:root {
    /* "Lovable" Palette Refinement */
    --primary-color: #407757;
    /* Forest Green */
    --primary-hover: #346147;
    /* Darker Forest */

    --secondary-color: #FBFBF8;
    /* Eggshell (Main BG) */

    --accent-color: #3d3129;
    /* Charcoal Green */
    --accent-green: #407757;
    /* Same as primary for consistency */

    --background-color: #FBFBF8;
    /* Eggshell */
    --surface-color: #F9F7F1;
    /* Warm Neutral Surface */

    --text-color: #293D33;
    /* Charcoal Green Text */
    --text-light: #6B7C75;
    /* Soft Muted Green/Grey */

    --success-color: #407757;
    --error-color: #D9534F;

    --border-radius: 20px;
    /* Softer, larger radius */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    /* Soft, diffused shadow */

    --font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: var(--surface-color);
    box-shadow: var(--shadow);
    padding: 1.25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(84, 69, 52, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-text {
    font-family: Arial, sans-serif;
    font-weight: 900;
    /* Heavy weight */
    font-size: 1.8rem;
    color: var(--accent-color);
    letter-spacing: -0.04em;
}

.logo-separator {
    color: #E2E8F0;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0.75rem;
}

.logo-tagline {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 4px 6px rgba(152, 93, 62, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(152, 93, 62, 0.3);
}

/* Hero Section */
/* Old Hero Wrapper Removed */



@media (max-width: 900px) {
    header {
        padding: 0.75rem 1rem;
    }

    nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-tagline {
        display: none;
        /* Hide tagline on mobile to save space if needed, or keep small */
    }

    .logo-separator {
        display: none;
    }

    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    /* Fix Beta Toast width on mobile */
    .beta-toast {
        width: 90%;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Chat Interface */
/* Chat Interface */
.chat-container {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    /* Deeper, softer shadow */
    /* Adaptive height */
    height: auto;
    max-height: 80vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 700px;
}

.chat-header {
    padding: 1.25rem 1.5rem;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F0EAE5;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-header h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* Semi-transparent white to let hero image show through subtly */
    background-color: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(2px);
    /* Nice modern touch */
}

.message {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    animation: fadeIn 0.3s ease;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 0.95rem;
}

.message.ai {
    background-color: #FFFFFF;
    color: var(--text-color);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0EAE5;
}

.message.user {
    background-color: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 4px rgba(152, 93, 62, 0.2);
}

.message a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.message a:hover {
    border-bottom-color: currentColor;
}

/* Chat Input */
/* Chat Input Capsule Style */
.chat-input-area {
    padding: 1rem;
    background-color: #FFFFFF;
    border-top: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
}

.chat-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #F8F9FA;
    color: var(--text-color);
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(152, 93, 62, 0.1);
}

/* Floating Action Button Style for Send */
.send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(64, 119, 87, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.send-btn span {
    display: none;
    /* Hide text, icon only */
}

/* Ensure SVG is centered */
.send-btn svg {
    margin: 0;
}

.send-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(152, 93, 62, 0.3);
}

.send-btn:disabled {
    background-color: #CBD5E0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

footer {
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    border-top: 1px solid #F0EAE5;
    background-color: #FAFAF9;
    margin-top: auto;
}

/* References Section in Chat */
.references-section {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #EBE4DE;
    font-size: 0.85rem;
    color: var(--text-light);
}

.references-section strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Beta Toast */
/* Beta Toast */
.beta-toast {
    position: fixed;
    /* Stick to viewport */
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFF8F0;
    /* Light warm background */
    color: #9C4221;
    /* Dark orange/brown */
    border: 1px solid #FBD38D;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(152, 93, 62, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeDown 0.5s ease;
    white-space: nowrap;
    width: auto;
    max-width: 95%;
    /* Responsive max width */
}

@media (max-width: 600px) {
    .beta-toast {
        top: 0.5rem;
        /* Closer to top on mobile */
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: normal;
        /* Allow wrapping */
        text-align: center;
        border-radius: 20px;
        /* softer radius for multiline */
    }
}

.beta-toast.hidden {
    display: none;
}

.close-beta {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #9C4221;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-beta:hover {
    opacity: 1;
    color: 1;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Thinking Animation */
/* Thinking Animation */
.message.thinking {
    background-color: #FFFFFF;
    color: var(--text-light);
    font-style: normal;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 1rem 1.25rem;
    /* Match standard message padding */
    border-radius: 18px;
    /* Match standard radius */
    border-bottom-left-radius: 4px;
    /* AI side */
    width: fit-content;
    border: 1px solid #F0EAE5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    margin-bottom: 0;
}

.dot {
    width: 8px;
    /* Slightly larger */
    height: 8px;
    background-color: var(--primary-color);
    /* Use Primary Green for better contrast against white bubble */
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes pulse {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Sample Questions (Vertical List) */
/* Sample Questions (Vertical List) */
.sample-questions-container {
    width: 100%;
    max-width: 700px;
    margin-top: 2rem;
    padding: 1.5rem;

    /* Background Image Implementation with Pseudo-element for Opacity */
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow);
    /* Ensure content sits above background */
    z-index: 1;
    overflow: hidden;
    /* containment */
}

.sample-questions-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    /* 40% Opacity as requested */
    z-index: -1;
}

.sample-title {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    margin-left: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Removed vertical scrolling */
}

.question-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 1.15rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.question-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 119, 87, 0.12);
}

.question-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 93, 62, 0.1);
}

.question-item .icon {
    font-size: 1.25rem;
}

.question-item .text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.question-item .arrow {
    color: var(--text-light);
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.question-item:hover .arrow {
    opacity: 1;
    color: var(--accent-green);
}

/* --- Resources Page Styles --- */
.resources-hero {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.resources-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.resources-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.emergency-bar {
    background-color: #FEE2E2;
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #991B1B;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 4rem;
}

.resource-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.resource-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.resource-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.resource-link:not(.no-hover):hover {
    background-color: #F3F4F6;
}

.resource-link strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* --- Homepage Styles (Lovable Redesign) --- */

.homepage-wrapper {
    width: 100%;
    margin-bottom: -2rem;
    /* offset main padding bottom */
}

/* New Split Hero Section */
.hero-section-split {
    padding: 3rem 1rem 4rem 1rem;
    background-color: var(--secondary-color);
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-text-column {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background-color: #DEF2E6;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #D1D5DB;
    color: var(--text-color);
}

.btn-outline:hover {
    border-color: var(--text-color);
    background-color: #F3F4F6;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E2E8F0;
    border: 2px solid white;
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

/* Hero Image Column */
.hero-image-column {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    /* Lovable style often uses aspect ratio or specific shaping */
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 240px;
}

.shield-icon {
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 0.9rem;
    color: var(--text-color);
}

.card-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Chat Section Wrapper */
.chat-section-wrapper {
    background-color: white;
    padding: 2rem 1rem 1rem 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Pull up slightly */
}

.chat-wrapper-centered {
    width: 100%;
    max-width: 800px;
}

/* Common Questions Section */
.common-questions-section {
    padding: 1rem 1rem 4rem 1rem;
    background-color: white;
    /* Continue white bg from chat */
    display: flex;
    justify-content: center;
}

.questions-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.questions-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.questions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.question-chip {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.question-chip:hover {
    border-color: var(--primary-color);
    background-color: #F8FAF9;
    color: var(--primary-color);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-image-column {
        order: -1;
        /* Image first on mobile usually looks good for impact */
        order: 0;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        width: 90%;
    }
}

/* Section 1: How We Help */
.how-we-help {
    padding: 4rem 1rem;
    background-color: var(--secondary-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(64, 119, 87, 0.1);
    border-color: rgba(64, 119, 87, 0.2);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.help-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section 2: Support Section (Values) */
.support-section {
    padding: 6rem 1rem;
    background-color: var(--secondary-color);
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-text .text-left {
    text-align: left;
}

.support-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.7;
}

.btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-icon {
    font-size: 1.75rem;
    min-width: 50px;
    text-align: center;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 900px) {
    .support-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-text {
        text-align: center;
        margin-bottom: 1rem;
    }

    .support-text .text-left {
        text-align: center;
    }
}

/* Section 3: CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 1rem;
    text-align: center;
    color: #FFFFFF;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-white {
    background-color: #FFFFFF;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}