/* Base styles - User Provided */
:root {
    --primary-dark-blue: #08355f; /* Updated Primary Blue */
    --accent-gold: #d4b254; /* Rich gold accent */
    --accent-gold-light: #e9cc7a; /* Lighter gold */
    --light-gray-bg: #f8fafc; /* Very light blue-gray */
    --dark-gray-bg: #334155; /* Darker Gray for Testimonial */
    --white-bg: #ffffff;
    --dark-text: #1e293b; /* Darker gray/blue text */
    --medium-text: #475569; /* Medium gray/blue text */
    --light-text: #f8fafc; /* Very light gray/white text */
    --border-color: #e2e8f0; /* Light border */
    --dark-section-text: #cbd5e1; /* Text on dark bg */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease-in-out;
    
    /* High contrast colors for accessibility */
    --focus-color: #ffbf00; /* High contrast focus color */
    --error-color: #dc2626; /* Error state color */
    --success-color: #059669; /* Success state color */
}

/* Ensure minimum contrast ratios for WCAG AA compliance */
@media (prefers-contrast: high) {
    :root {
        --primary-dark-blue: #000000;
        --accent-gold: #ffff00;
        --light-text: #ffffff;
        --dark-text: #000000;
        --medium-text: #000000;
        --dark-section-text: #ffffff;
        --focus-color: #ffff00;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Skip Links for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-dark-blue);
    color: var(--light-text);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
}
.skip-link:focus {
    top: 6px;
}

/* Enhanced Focus Indicators for Accessibility */
*:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Remove default outline and add custom focus styles */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-dark-blue: #000000;
        --accent-gold: #ffff00;
        --light-text: #ffffff;
        --dark-text: #000000;
        --medium-text: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

html { scroll-padding-top: 70px; scroll-behavior: smooth;}
body { font-family: 'Lato', sans-serif; line-height: 1.7; color: var(--medium-text); background-color: var(--white-bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: var(--primary-dark-blue); }
h1 { font-size: 3.5rem; } h2 { font-size: 2.5rem; margin-bottom: 2rem; } h3 { font-size: 1.75rem; } h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1.25rem; color: var(--medium-text); }
ul { list-style: none; margin-bottom: 1.25rem; }
li { margin-bottom: 0.5rem; }
a { text-decoration: none; color: var(--primary-dark-blue); transition: var(--transition); }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-bg-light { background-color: var(--light-gray-bg); }
.section-bg-dark { background-color: var(--primary-dark-blue); color: var(--dark-section-text); }
.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4 { color: var(--light-text); }
.section-bg-dark p { color: var(--dark-section-text); }
.section-bg-medium { background-color: var(--dark-gray-bg); color: var(--dark-section-text); }
.section-bg-medium h2, .section-bg-medium h3 { color: var(--light-text); }
.section-bg-medium p { color: var(--dark-section-text); }

.section-title { text-align: center; margin-bottom: 3rem; position: relative; }
.section-title:after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--accent-gold); margin: 0.75rem auto 0; }
.text-center { text-align: center; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.grid { display: grid; } .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: 6px; font-weight: 700; text-align: center; cursor: pointer; transition: var(--transition); font-family: 'Lato', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.8px; border: 2px solid transparent; }
.btn:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}
.btn-gold { background-color: var(--accent-gold); color: var(--primary-dark-blue); border-color: var(--accent-gold); }
.btn-gold:hover, .btn-gold:focus { background-color: var(--accent-gold-light); border-color: var(--accent-gold-light); box-shadow: var(--shadow-md); }
.btn-outline-light { background-color: transparent; color: var(--light-text); border-color: var(--light-text); }
.btn-outline-light:hover, .btn-outline-light:focus { background-color: var(--light-text); color: var(--primary-dark-blue); }
.btn-outline-dark { background-color: transparent; color: var(--primary-dark-blue); border-color: var(--primary-dark-blue); }
.btn-outline-dark:hover, .btn-outline-dark:focus { background-color: var(--primary-dark-blue); color: var(--light-text); }

/* Header */
header { background-color: var(--primary-dark-blue); padding: 0.75rem 0; box-shadow: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: padding 0.3s ease; }
header.scrolled { padding: 0.5rem 0; background-color: rgba(8, 53, 95, 0.95); backdrop-filter: blur(5px); box-shadow: var(--shadow-md); }
.logo-img { max-height: 45px; }
nav ul { display: flex; list-style: none; } nav ul li { margin-left: 1.5rem; }
nav ul li a { font-weight: 500; color: var(--light-text); position: relative; padding: 0.5rem 0; font-size: 0.9rem; opacity: 0.9; }
nav ul li a:hover, nav ul li a:focus { color: var(--accent-gold); opacity: 1; } nav ul li a:after { display: none; }
nav ul li a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}
.nav-contact-btn { margin-left: 1.5rem; } .nav-contact-btn .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.75rem; cursor: pointer; color: var(--light-text); }
.mobile-menu-btn:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Hero */
.hero { position: relative; height: 100vh; min-height: 700px; background: var(--primary-dark-blue); color: var(--light-text); display: flex; align-items: center; text-align: left; padding: 0; margin-top: 0; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgNzAwVjBDMTAwIDUwIDIwMCAxMDAgMzAwIDE1MCA0MDAgMjAwIDUwMCAyNTAgNjAwIDMwMCA3MDAgMzUwIDgwMCA0MDAgOTAwIDQ1MCAxMDAwIDUwMCAxMTAwIDU1MCAxMjAwIDYwMCAxMzAwIDY1MCAxNDAwIDcwMCAxNTAwIDc1MFY3MDBIMFoiIGZpbGw9IiMwODM1NWYiIGZpbGwtb3BhY2l0eT0iMC4zIi8+PC9zdmc+'); background-size: cover; background-position: center; opacity: 0.6; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 600px; padding-top: 80px; }
.hero-image { position: absolute; right: 0; top: 0; width: 50%; height: 100%; z-index: 1; background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80'); background-size: cover; background-position: center; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
.hero-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(8, 53, 95, 0.9), rgba(8, 53, 95, 0.4)); }
.hero .subtitle { font-family: 'Lato', sans-serif; font-size: 1.3rem; font-weight: 400; color: var(--accent-gold); margin-bottom: 1.5rem; display: block; letter-spacing: 1px; }
.hero h1 { color: var(--light-text); margin-bottom: 1.5rem; font-size: 4rem; line-height: 1.1; }
.hero p { font-size: 1.1rem; margin-bottom: 2.5rem; color: #cbd5e1; max-width: 90%; }
.hero-btns { display: flex; gap: 1rem; margin-bottom: 0; }

/* Immigration Services Section - Table Style */
.immigration-services { background-color: var(--white-bg); position: relative; overflow: hidden; }
.immigration-header { display: flex; align-items: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.immigration-icon { font-size: 2.5rem; color: var(--accent-gold); margin-right: 1rem; }
.immigration-title { margin-bottom: 0; }
.visa-category-title { font-size: 1.8rem; margin: 3rem 0 1.5rem; color: var(--primary-dark-blue); text-align: center; position: relative; padding-bottom: 0.75rem; }
.visa-category-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent-gold); }

.visa-category-container { display: block; padding-left: 1rem; }
@media (min-width: 768px) { .visa-category-container { columns: 2; column-gap: 2.5rem; } .visa-category-container > div { break-inside: avoid; margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .visa-category-container { columns: 3; } }

.visa-item { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
 .visa-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.visa-item h4 { font-size: 1.1rem; font-weight: 600; color: var(--primary-dark-blue); margin-bottom: 0.3rem; font-family: 'Lato', sans-serif; }
.visa-item p { font-size: 0.9rem; color: var(--medium-text); margin-bottom: 0; line-height: 1.6; }

/* About */
.about { background-color: var(--white-bg); }
.about-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
 @media (min-width: 768px) { .about-content { grid-template-columns: 3fr 2fr; } }
.about-text h2 { text-align: left; margin-bottom: 1.5rem; } .about-text h2:after { display: none; }
.about-text p { margin-bottom: 1.5rem; color: var(--medium-text); }
.about-text .highlight { color: var(--primary-dark-blue); font-weight: 600; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); } .about-image img { border-radius: 8px; }

/* Practice Areas (Simplified) */
.practice { background-color: var(--light-gray-bg); }
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.practice-card { background-color: var(--white-bg); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border-color); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.practice-card:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.practice-icon { width: 50px; height: 50px; background-color: var(--primary-dark-blue); color: var(--light-text); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.practice-card h3 { margin-bottom: 1rem; color: var(--primary-dark-blue); font-size: 1.5rem; }
.practice-card p { color: var(--medium-text); margin-bottom: 1.5rem; flex-grow: 1; font-size: 0.95rem; }
.practice-link { color: var(--primary-dark-blue); font-weight: 700; display: inline-flex; align-items: center; margin-top: auto; font-size: 0.9rem; }
.practice-link:hover { color: var(--accent-gold); }
.practice-link i { margin-left: 0.5rem; transition: var(--transition); font-size: 0.8rem; }
.practice-link:hover i { margin-left: 0.75rem; }

/* CTA Banner Placeholder */
.cta-banner { padding: 4rem 0; background-color: var(--dark-gray-bg); color: var(--light-text); text-align: center; }
.cta-banner h3 { color: var(--light-text); margin-bottom: 1.5rem; font-size: 2rem; }

/* Credentials */
.credentials { background-color: var(--white-bg); }
.credentials-container { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
 @media (min-width: 768px) { .credentials-container { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.credentials-title { font-size: 1.5rem; margin-bottom: 1.5rem; text-align: left; color: var(--primary-dark-blue); }
.credential-card { background-color: var(--light-gray-bg); border-radius: 8px; padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; border: 1px solid var(--border-color); }
.credential-card h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--primary-dark-blue); }
.credential-details { font-weight: 500; color: var(--medium-text); margin-bottom: 0.25rem; font-size: 0.95rem; }
.credential-date { font-size: 0.8rem; color: var(--medium-text); }
.admission-list { list-style: none; }
.admission-item { display: flex; margin-bottom: 1rem; align-items: flex-start; }
.admission-item:last-child { margin-bottom: 0; }
.admission-icon { color: #10b981; margin-right: 0.75rem; font-size: 1rem; margin-top: 0.2rem; }
.admission-content { flex: 1; }
.admission-name { font-weight: 600; margin-bottom: 0.25rem; color: var(--dark-text); }
.admission-date { font-size: 0.875rem; color: var(--medium-text); }

/* Testimonials */
.testimonials-section { background-color: var(--primary-dark-blue); position: relative; overflow: hidden; padding: 5rem 0; }
.testimonials-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgNzAwVjBDMTAwIDUwIDIwMCAxMDAgMzAwIDE1MCA0MDAgMjAwIDUwMCAyNTAgNjAwIDMwMCA3MDAgMzUwIDgwMCA0MDAgOTAwIDQ1MCAxMDAwIDUwMCAxMTAwIDU1MCAxMjAwIDYwMCAxMzAwIDY1MCAxNDAwIDcwMCAxNTAwIDc1MFY3MDBIMFoiIGZpbGw9IiMwODM1NWYiIGZpbGwtb3BhY2l0eT0iMC4zIi8+PC9zdmc+'); background-size: cover; background-position: center; opacity: 0.2; z-index: 1; }
.testimonials-container { position: relative; z-index: 2; }
.testimonial-card { background-color: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 2rem; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; color: var(--accent-gold); position: absolute; top: -1rem; left: 1rem; opacity: 0.3; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; line-height: 1.6; color: var(--light-text); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; }
.testimonial-author-image { width: 50px; height: 50px; border-radius: 50%; background-color: var(--accent-gold); margin-right: 1rem; display: flex; align-items: center; justify-content: center; color: var(--primary-dark-blue); font-weight: 700; font-size: 1.2rem; }
.testimonial-author-info h4 { color: var(--accent-gold); margin-bottom: 0.25rem; font-size: 1.1rem; }
.testimonial-author-info p { color: var(--dark-section-text); font-size: 0.9rem; margin-bottom: 0; }

/* Contact Section */
.contact-section { padding: 5rem 0; }
.contact-info a.contact-link { color: var(--accent-gold); font-weight: 600; text-decoration: none; }
 .contact-info a.contact-link:hover { color: var(--accent-gold-light); text-decoration: underline; }
.contact-form-container { max-width: 700px; margin: 3rem auto 0 auto; background-color: rgba(255, 255, 255, 0.05); padding: 2.5rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--dark-section-text); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 0.95rem; background-color: rgba(8, 53, 95, 0.5); color: var(--light-text); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #94a3b8; opacity: 1; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 2px rgba(212, 178, 84, 0.3); background-color: rgba(8, 53, 95, 0.7); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-gold { width: 100%; padding: 0.8rem 1rem; margin-top: 1rem; }

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background-color: var(--success-color);
    color: white;
    border: 1px solid #047857;
}

.form-status.error {
    background-color: var(--error-color);
    color: white;
    border: 1px solid #b91c1c;
}

/* Button Loading State */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline !important;
}

/* Footer */
footer { background-color: var(--primary-dark-blue); color: #94a3b8; border-top: none; padding: 3rem 0; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { max-height: 40px; width: auto; filter: brightness(0) invert(1); }
.footer-nav { margin-bottom: 1.5rem; }
.footer-nav a { margin: 0 0.75rem; font-size: 0.875rem; color: #cbd5e1; }
.footer-nav a:hover { color: var(--accent-gold); }
.copyright { font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.5rem; }
.disclaimer { font-size: 0.75rem; color: #64748b; max-width: 700px; margin: 0 auto; line-height: 1.4; }

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    .hero h1 { font-size: 3rem; }
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    .visa-list-columns { columns: 2; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-contact-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Mobile Navigation Styles */
    #main-nav {
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%;
        background-color: var(--primary-dark-blue);
        box-shadow: var(--shadow); 
        display: none;
        max-height: calc(100vh - 60px); 
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    #main-nav.active { 
        display: block !important; 
    }
    
    #main-nav .nav-menu { 
        display: flex !important;
        flex-direction: column; 
        padding: 0; 
    }
    
    #main-nav .nav-menu li { 
        margin: 0; 
        text-align: center; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }
    
    #main-nav .nav-menu li:last-child { 
        border-bottom: none; 
    }
    
    #main-nav .nav-menu li a { 
        display: block; 
        padding: 1rem; 
        width: 100%; 
        color: var(--light-text); 
    }
    
    #main-nav .nav-menu li a:after { 
        display: none; 
    }

    .hero { text-align: center; padding: 6rem 0 4rem 0; height: auto; min-height: 600px; }
    .hero-content { margin: 0 auto; padding: 0 1rem; max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-image { display: none; }

    .about-content { gap: 2rem; }
    .about-text h2 { text-align: center; }
    .about-image { order: -1; margin-bottom: 2rem; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .associations-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
    .credentials-container { gap: 2rem; }

    .immigration-services::before { display: none; }
    .visa-list-columns { columns: 1; }
    .immigration-header { flex-direction: column; text-align: center; }
    .immigration-icon { margin-right: 0; margin-bottom: 1rem; }
}
@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }

    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; max-width: 300px; margin: 0 auto 1rem auto; }
    .hero-btns .btn:last-child { margin-bottom: 0; }

    .contact-btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }
    .footer-nav a { margin: 0 0.5rem; display: inline-block; margin-bottom: 0.5rem; }
    .contact-form-container { padding: 1.5rem; }

    .visa-list-columns { padding-left: 0; }
    .support-section { padding: 2rem 1.5rem; }
}