/* Root Variables */
:root {
    --money-green: #2E8B57;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --nav-text-spacing: 0.75rem;
    --nav-text-size: 0.9rem;
    --nav-text-weight: 500;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Global Header Styles */
header {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 4rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.page-header {
    position: relative;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 0 1rem;
}

.logo {
    max-width: 220px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    padding-right: 2.5rem;
    padding-bottom: 1rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    height: auto;
}

/* Main Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.75rem;
    margin: 1.5rem 1rem 0;
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation container styles moved to navigation.css */

/* Navigation styles moved to navigation.css */

/* Navigation link styles moved to navigation.css */

/* Navigation link hover and active styles moved to navigation.css */

/* Language switcher styles moved to navigation.css */

/* Mobile menu toggle styles moved to navigation.css */

/* All navigation responsive styles moved to navigation.css */

/* Page Title Section */
.page-title {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.page-title h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    transform: translateX(-5px);
}

.back-to-home i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-cta {
    background: var(--gold);
    color: #333;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: #FFED4E;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: white;
    color: var(--money-green);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--money-green);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--money-green);
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.hero .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    font-size: 1.25rem;
}

.phone {
    background-color: var(--money-green);
}

.whatsapp {
    background-color: #25D366;
}

.appointment {
    background-color: #1a4731;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: white;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.service-features-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--money-green);
    font-weight: bold;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--money-green) 0%, #1a4731 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image-placeholder {
    transform: scale(1.05);
}

/* Tax Updates Section */
.tax-updates-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.tax-updates-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.update-banner {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.update-banner .banner-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.update-banner .banner-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.update-banner .banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.update-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--money-green);
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.update-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.update-card h3 {
    font-size: 1.3rem;
    color: var(--money-green);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.update-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.update-impact {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--money-green);
}

.impact-label {
    font-weight: 600;
    color: var(--money-green);
    margin-right: 0.5rem;
}

.impact-text {
    color: #666;
    font-style: italic;
}

.update-summary {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.update-summary h3 {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.update-summary ul {
    list-style: none;
    padding: 0;
}

.update-summary li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.update-summary li:last-child {
    border-bottom: none;
}

.update-summary li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--money-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.consultation-cta {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.consultation-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.consultation-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-cta .cta-button {
    background: white;
    color: var(--money-green);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.consultation-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tax-guide-download {
    background: white;
    border: 2px solid var(--money-green);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tax-guide-download h3 {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-bottom: 1rem;
}

.tax-guide-download p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tax-guide-download .cta-button {
    background: var(--money-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tax-guide-download .cta-button:hover {
    background: #1a4731;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tax Calculator Section */
.calculator-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.calculator-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-intro {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.calculator-intro .intro-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.calculator-intro .intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.calculator-intro .intro-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.calculator-form {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
}

.calculator-form h3 {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-form .form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    clear: both;
    padding-bottom: 0.5rem;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: normal;
    color: #333;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.4;
}

.calculator-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    background: white;
    display: block;
}

.calculator-form .form-control:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

/* Keep Tax Year label bold */
.calculator-form label[for="taxYear"] {
    font-weight: 600;
}

.form-hint {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    clear: both;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--money-green);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
    clear: both;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.input-prefix {
    position: absolute;
    left: 0.75rem;
    color: #666;
    font-weight: 600;
    z-index: 1;
}

.input-group .form-control {
    padding-left: 2rem;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calculator-results {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calculator-results.hidden {
    display: none;
}

.calculator-results h3 {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-bottom: 2rem;
    text-align: center;
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-cards .result-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.result-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--money-green);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    border-left-color: #fff;
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--money-green);
}

.result-card.highlight .result-icon {
    color: white;
}

.result-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--money-green);
}

.result-card.highlight .result-amount {
    color: white;
}

.tax-breakdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tax-breakdown h4 {
    font-size: 1.1rem;
    color: var(--money-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.calculator-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.calculator-disclaimer p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr1-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hr1-note i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.calculator-cta {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calculator-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.calculator-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .primary-cta {
    background: white;
    color: var(--money-green);
}

.cta-buttons .secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background: var(--money-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--money-green);
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--money-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1a4731;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: var(--money-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--money-green);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a {
    color: var(--money-green);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.recent-posts a:hover {
    color: #1a4731;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Email Signup Section */
.email-signup {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
}

.signup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--money-green);
    font-weight: 700;
}

.signup-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.signup-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.signup-btn {
    background: var(--money-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signup-btn:hover {
    background: #1a4731;
    transform: translateY(-2px);
}

.signup-disclaimer {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.success-message {
    background: var(--money-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message i {
    color: var(--gold);
    font-size: 1.2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--money-green);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--money-green);
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

button[type="submit"] {
    width: 30%;
    max-width: 200px;
    margin: 1.5rem auto 0;
    background-color: var(--money-green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2rem;
    position: relative;
    background: #f8f9fa;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    input, textarea {
        padding: 1rem 1.2rem;
        font-size: 1.2rem;
    }
    
    textarea {
        min-height: 120px;
    }
    
    button[type="submit"] {
        width: 50%;
        padding: 1rem;
    }
    
    .map-container {
        height: 300px;
        margin-top: 1.5rem;
    }
}

/* Add floating labels */
.form-group label {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    font-size: 1.2rem;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.8rem;
    left: 1.2rem;
    font-size: 1rem;
    color: var(--money-green);
    background: white;
    padding: 0 0.8rem;
}

/* Add icons to form fields */
.form-group i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.4rem;
}

.form-group textarea + i {
    top: 1.5rem;
    transform: none;
}

/* Footer */
footer {
    background-color: var(--money-green);
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    width: 16px;
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.business-hours p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom {
    background: #1a4731;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.social-links {
    margin-top: 1.5rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: #333;
    transform: translateY(-2px);
}

/* Consultation Page Styles */
.consultation-banner {
    background: linear-gradient(135deg, var(--money-green) 0%, #1a4731 100%);
    color: white;
    padding: 3rem 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-icon {
    font-size: 4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.banner-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.banner-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.consultation-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--money-green);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--money-green);
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.consultation-form-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--money-green);
    font-weight: 700;
}

.form-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Ensure form elements are properly contained */
.form-group {
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    z-index: 1;
    background: white;
    display: block;
}

.checkbox-group {
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.checkbox-group .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3pt; /* Move checkbox down 3pt as requested */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--money-green);
    cursor: pointer;
    order: 2; /* Move checkbox to the right */
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    flex: 1;
    order: 1; /* Move label to the left */
}

.submit-btn {
    background: var(--money-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    min-width: 280px;
}

.submit-btn:hover {
    background: #1a4731;
    transform: translateY(-2px);
}

.success-message-large {
    text-align: center;
    padding: 2rem;
}

.success-message-large i {
    font-size: 3rem;
    color: var(--money-green);
    margin-bottom: 1rem;
}

.success-message-large h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--money-green);
}

.success-message-large p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.trust-section {
    padding: 4rem 2rem;
    background: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--money-green);
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--money-green);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--money-green);
    font-weight: 600;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, var(--money-green) 0%, #1a4731 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-title-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Upcoming Services Banner */
.upcoming-services-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.upcoming-services-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.upcoming-services-banner .banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.upcoming-services-banner .banner-icon {
    font-size: 4rem;
    color: white;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.upcoming-services-banner .banner-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.upcoming-services-banner .banner-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.upcoming-services-banner .banner-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.upcoming-services-banner .cta-button {
    background: white;
    color: #FF6B35;
    font-weight: 600;
    border: 2px solid white;
}

.upcoming-services-banner .cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Utility Classes */
.bg-money-green { 
    background-color: var(--money-green) !important;
}

.text-money-green { 
    color: var(--money-green) !important;
}

.border-money-green { 
    border-color: var(--money-green) !important; 
}

.hover-gold:hover { 
    background-color: var(--gold) !important; 
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--money-green), #1a4731) !important;
}

[lang]:not([lang=en]) { 
    display: none; 
}

.transition-all {
    transition: all 0.3s ease;
}

.shadow-custom {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1700px;
}

/* Navigation wrapper to ensure proper containment */
.nav-wrapper {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 2rem 0.5rem 1rem;
    }
    .logo {
        max-width: 140px;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }
    .nav-wrapper {
        padding: 0 0.5rem;
    }
    
    .main-nav {
        margin: 1rem 0 0;
        padding: 0.5rem;
        position: relative;
        width: 100%;
        max-width: none;
    }
    /* Navigation styles moved to navigation.css */
    .hero {
        padding: 2rem 0.5rem;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 1rem;
    }
    .stat-item {
        padding: 1rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .why-choose-us {
        padding: 3rem 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-section {
        padding: 3rem 1rem;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .blog-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .blog-sidebar {
        order: -1;
    }
    .signup-form .form-group {
        flex-direction: column;
    }
    .signup-btn {
        width: 100%;
        justify-content: center;
    }
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .banner-icon {
        font-size: 3rem;
    }
    .upcoming-services-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .upcoming-services-banner .banner-icon {
        font-size: 3rem;
    }
    .page-title-section {
        padding: 2rem 1rem;
    }
    .page-title-section h1 {
        font-size: 2rem;
    }
    .page-title-section p {
        font-size: 1.1rem;
    }
    .testimonials {
        padding: 1.5rem 0.5rem;
    }
    .testimonial-card {
        padding: 1rem;
        max-width: 95vw;
    }
    .testimonial-quote {
        font-size: 0.95rem;
    }
    .testimonial-controls {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card {
        padding: 1rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-info {
        margin-bottom: 1rem;
    }
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

/* BBB Badge Styles */
.bbb-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bbb-badge-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bbb-badge-link:hover {
    transform: scale(1.05);
}

.bbb-badge-img {
    width: 192px;
    height: auto;
    display: block;
}

.bbb-badge-rating {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #2E8B57;
    font-weight: bold;
    text-align: center;
}

/* Hide GPT elements */
#gpt-passback {
  display: none !important;
}

/* Footer Links Margin */
.footer-links-margin {
  margin-top: 2rem;
}

/* Service Button Styles */
.service-button-style { display: inline-block; background-color: var(--money-green); color: white; padding: 1rem 2rem; border-radius: 4px; text-decoration: none; transition: all 0.3s ease; }

/* Utility class for centering text and margin top */
.centered-margin-top {
    text-align: center;
    margin-top: 2rem;
}

/* Add any other custom classes from index.html and services.html here */

/* Remove underline from BBB badge link */
.no-underline {
    text-decoration: none;
}

/* Set width for BBB badge image */
.bbb-badge-img-width {
    width: 12rem;
}

/* Display block for BBB badge rating */
.bbb-badge-rating-block {
    display: block;
}

/* BBB badge rating text color and style */
.bbb-badge-rating-block span[lang="en"] {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.bbb-badge-margin {
    margin-top: 1rem;
}

.bbb-badge-link {
    text-decoration: none;
}

.bbb-badge-img {
    width: 12rem;
}

.bbb-badge-rating {
    display: block;
}

.bbb-badge-rating span[lang="en"] {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-link-padding {
    padding: 1rem;
    display: inline-block;
}

/* Contact page specific styles */
.contact-bbb-badge {
    margin-top: 1rem;
}

.contact-bbb-badge-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-bbb-badge-img {
    width: 12rem;
    max-width: 100%;
}

.contact-bbb-badge-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* Contact Page Specific Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card h2 {
    color: var(--money-green);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Form Group Styles */
.contact-form-card .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-form-card .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    position: absolute;
    left: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #666;
    z-index: 1;
    padding: 0.25rem 0;
    font-size: 1rem;
}

.contact-form-card .form-group textarea + label {
    top: 1.5rem;
    transform: none;
}

.contact-form-card .form-group input:focus + label,
.contact-form-card .form-group textarea:focus + label,
.contact-form-card .form-group input:not(:placeholder-shown) + label,
.contact-form-card .form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.875rem;
    background: white;
    padding: 0 0.5rem;
    color: var(--money-green);
    z-index: 2;
    font-weight: 600;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 4.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.contact-form-card .form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1.5rem;
}

.contact-form-card .form-group input:hover,
.contact-form-card .form-group textarea:hover {
    border-color: #999;
    background-color: #fafafa;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
    background-color: #fff;
}

.contact-form-card .form-group i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 1;
    width: 20px;
    text-align: center;
}

.contact-form-card .form-group textarea + i {
    top: 1.5rem;
    transform: none;
}

.contact-form-card .form-group input:focus + i,
.contact-form-card .form-group textarea:focus + i {
    color: var(--money-green);
    transform: scale(1.1);
    z-index: 2;
}

.contact-form-card .form-submit {
    background-color: var(--money-green);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card .form-submit:hover {
    background-color: #247446;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form-card .form-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Contact Page Header Styles */
.contact-page-header {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.contact-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    margin-top: 2rem;
}

.contact-page-header p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-back-to-home {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-back-to-home:hover {
    text-decoration: underline;
}

/* Contact Page Map Container */
.contact-map-container {
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 400px;
}

/* Contact Page Office Hours */
.contact-office-hours {
    margin: 2rem 0;
}

.contact-office-hours h3 {
    color: var(--money-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-hours-table {
    width: 100%;
}

.contact-hours-table tr {
    border-bottom: 1px solid #eee;
}

.contact-hours-table tr:last-child {
    border-bottom: none;
}

.contact-hours-table td {
    padding: 0.5rem 0;
}

.contact-hours-table td:first-child {
    font-weight: bold;
    width: 150px;
}

/* Contact Page BBB Badge */
.contact-bbb-badge {
    display: block;
    margin: 2rem auto;
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Contact Page Footer Links */
.contact-footer-links-margin {
    margin-top: 2rem;
}

/* Contact Page Map Iframe */
.contact-map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--money-green) 0%, #1a4731 100%);
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i {
    color: var(--money-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: bold;
    color: var(--money-green);
    margin-bottom: 0.25rem;
}

.author-title {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-arrow {
    background: var(--money-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: #247446;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--money-green);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #247446;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-controls {
        flex-wrap: wrap;
    }
}

/* Services Page Styles */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detailed {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-detailed:hover {
    transform: translateY(-5px);
}

.service-header {
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-title p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-content {
    padding: 2rem;
}

.service-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--money-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card h3 i {
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: var(--money-green);
    color: white;
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: #f8f9fa;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--money-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 139, 87, 0.3);
    background: #247446;
}

.service-button i {
    font-size: 1.2rem;
}

/* Back to Home Link */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Add font-display: swap to all web fonts */
@font-face {
    font-family: 'CustomFont';
    src: url('/fonts/custom-font.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'AnotherFont';
    src: url('/fonts/another-font.woff2') format('woff2');
    font-display: swap;
}

/* About Page Styles */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.about-sidebar h3 {
    color: var(--money-green);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--money-green);
}

.profile-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--money-green);
}

.profile-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--money-green);
    transition: all 0.3s ease;
}

.profile-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-photo {
    border-color: var(--money-green);
}

.profile-card:hover .profile-photo-img {
    transform: scale(1.05);
}

.profile-info h4 {
    color: var(--money-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-title {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.profile-experience {
    color: #718096;
    font-size: 0.8rem;
    margin-bottom: 0;
    font-style: italic;
}

.sidebar-cta {
    margin-top: 2rem;
    text-align: center;
}

.sidebar-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--money-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--money-green);
}

.sidebar-cta-button:hover {
    background: white;
    color: var(--money-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.sidebar-cta-button i {
    font-size: 1rem;
}

.about-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.about-content h2 {
    color: var(--money-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--money-green);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--money-green);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--money-green);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--money-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sidebar {
        position: static;
        order: 2;
    }
    
    .about-sidebar h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .profile-photo {
        width: 60px;
        height: 60px;
    }
    
    .profile-info h4 {
        font-size: 1rem;
    }
    
    .profile-title {
        font-size: 0.85rem;
    }
    
    .profile-experience {
        font-size: 0.75rem;
    }
    
    .sidebar-cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-content {
        padding: 1.5rem;
        order: 1;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .values-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Services Page Specific Styles */
.services-bbb-badge {
    margin-top: 1rem;
}

.services-bbb-badge-link {
    text-decoration: none;
}

.services-bbb-badge-img {
    width: 12rem;
}

.services-bbb-badge-text {
    display: block;
}

.services-bbb-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.services-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* Appointment Page Specific Styles */
.appointment-language-switcher {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 10;
}

.appointment-bbb-badge {
    margin-top: 1rem;
}

.appointment-bbb-badge-link {
    text-decoration: none;
}

.appointment-bbb-badge-img {
    width: 12rem;
}

.appointment-bbb-badge-text {
    display: block;
}

.appointment-bbb-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.appointment-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* FAQ Page Specific Styles */
.faq-bbb-badge {
    margin-top: 1rem;
}

.faq-bbb-badge-link {
    text-decoration: none;
}

.faq-bbb-badge-img {
    width: 12rem;
}

.faq-bbb-badge-text {
    display: block;
}

.faq-bbb-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.faq-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* Payment Confirmation Page Specific Styles */
.payment-confirmation-bbb-badge {
    margin-top: 1rem;
}

.payment-confirmation-bbb-badge-link {
    text-decoration: none;
}

.payment-confirmation-bbb-badge-img {
    width: 12rem;
}

.payment-confirmation-bbb-badge-text {
    display: block;
}

.payment-confirmation-bbb-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.payment-confirmation-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* Privacy Policy Page Specific Styles */
.privacy-policy-bbb-badge {
    margin-top: 1rem;
}

.privacy-policy-bbb-badge-link {
    text-decoration: none;
}

.privacy-policy-bbb-badge-img {
    width: 12rem;
}

.privacy-policy-bbb-badge-text {
    display: block;
}

.privacy-policy-bbb-rating {
    color: #015A75;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.privacy-policy-footer-link {
    padding: 1rem;
    display: inline-block;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Images - Following W3Schools principles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive SVG images */
svg {
    max-width: 100%;
    height: auto;
}

/* Responsive iframe and video elements */
iframe, video {
    max-width: 100%;
    height: auto;
}

/* Responsive table */
table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* Responsive text using viewport width units */
.responsive-heading {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.2;
}

.responsive-subheading {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
}

.responsive-body {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.6;
}

/* Responsive container */
.responsive-container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive grid system */
.responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .responsive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .responsive-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive flexbox utilities */
.responsive-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .responsive-flex {
        flex-direction: row;
        align-items: center;
    }
}

/* Responsive spacing */
.responsive-padding {
    padding: clamp(1rem, 3vw, 3rem);
}

.responsive-margin {
    margin: clamp(1rem, 3vw, 3rem);
}

/* Team Photo Styles */
.team-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-photo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--money-green);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--money-green), #1a4731);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--money-green);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-photo-placeholder i {
    font-size: 3rem;
    color: white;
}

/* Navigation Test Page Styles */
.test-main {
    padding: 2rem;
    text-align: center;
}

.test-instructions {
    margin-top: 2rem;
}

.test-instructions ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.test-back-button {
    margin-top: 2rem;
}

.test-back-button a {
    background: var(--money-green);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.test-back-button a:hover {
    background: #1a4731;
    transform: translateY(-2px);
}

/* Team Section Styles */
.team-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--money-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.team-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Team Card Styles */
.team-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--money-green);
}

/* Team Info Styles */
.team-info {
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    color: var(--money-green);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.team-experience {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.team-designation {
    display: inline-block;
    background: var(--money-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Team Expertise Tags */
.team-expertise {
    margin-top: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #f0f8f0;
    color: var(--money-green);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* Team Back to Home */
.team-back-home {
    text-align: center;
    margin-top: 2rem;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--money-green);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: #1a4731;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-home i {
    font-size: 1.1rem;
}

/* Responsive Team Grid */
@media (max-width: 768px) {
    .team-section {
        padding: 2rem 1rem;
    }
    
    .team-intro h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .expertise-tags {
        justify-content: flex-start;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Free Consultation Banner */
.free-consultation-banner {
    background: linear-gradient(135deg, var(--money-green) 0%, #1a4731 100%);
    color: white;
    padding: 3rem 2rem;
}

.free-consultation-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.free-consultation-banner .banner-icon {
    font-size: 4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.free-consultation-banner .banner-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.free-consultation-banner .banner-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.free-consultation-banner .banner-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* Make the secondary CTA button more visible in the free consultation banner */
.free-consultation-banner .secondary-cta {
    background: rgba(255, 255, 255, 0.9);
    color: var(--money-green);
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.free-consultation-banner .secondary-cta:hover {
    background: white;
    color: var(--money-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Blog Post Content Styling */
.blog-post-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.blog-post-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--money-green);
}

.blog-post-meta {
    color: #FFD700;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-post-meta i {
    color: var(--money-green);
}

.blog-post-title {
    color: var(--money-green);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.blog-post-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-post-content {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    color: var(--money-green);
    margin: 2rem 0 1rem 0;
    border-left: 4px solid var(--money-green);
    padding-left: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-post-content h3 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.blog-post-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--money-green);
    padding: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.highlight-box {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #155724;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-box p {
    color: #155724;
    margin: 0;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.warning-box p {
    color: #856404;
    margin: 0;
}

.back-to-blog {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.back-to-blog .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--money-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-to-blog .cta-button:hover {
    background: #1a4731;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-blog .cta-button.secondary-cta {
    background: #6c757d;
}

.back-to-blog .cta-button.secondary-cta:hover {
    background: #545b62;
}

/* Responsive adjustments for blog posts */
@media (max-width: 768px) {
    .blog-post-section {
        padding: 2rem 1rem;
    }
    
    .blog-post-container {
        padding: 2rem 1.5rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Override global image sizing for profile pictures and team photos */
.profile-photo-img,
.team-photo-img {
    max-width: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Specific sizing for profile photos in sidebar */
.profile-photo .profile-photo-img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
}

/* Specific sizing for team photos in team cards */
.team-photo .team-photo-img {
    width: 150px !important;
    height: 150px !important;
    max-width: 150px !important;
    max-height: 150px !important;
}