:root {
    --color-dark: #25434C;
    --color-accent: #FFD700;
    --color-secondary: #4682B4;
    --color-light: #FEF8EC;
    --color-white: #FFFFFF;
    --color-text: #25434C;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --spacing-section: 5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --bg-section: #FEF8EC;
}

/* Base */
body {
    font-family: var(--font-main);
    background-color: var(--color-light);
    color: var(--color-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.center {
    text-align: center;
}

.muted {
    color: #666;
    font-size: 0.9em;
}

/* Legal Content */
.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Header */
header,
.site-header {
    height: var(--header-height);
    background-color: var(--color-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
}

.nav-links .btn {
    margin-left: 1rem;
}

.nav-links .btn-primary {
    color: var(--color-white);
}

.nav-links .btn-secondary {
    color: var(--color-dark);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-dark);
}

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-secondary);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    color: #666;
}

.hero-note a {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* Sections */
section,
.section {
    padding: var(--spacing-section) 0;
}

.section-alt {
    background-color: var(--color-white);
}

.section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.section-text {
    flex: 1;
}

.section-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-dark);
}

/* Why Card */
.why-card {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-card h2 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--color-light);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border for definition on white bg */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s;
}

.section-alt .feature-card {
    background: var(--color-white);
    /* Adjust if section is white? No, need contrast. */
    background: #F8F9FA;
    /* Slightly off-white for cards on white section */
}

/* Revert: User put features in .section-alt (white). So cards should be Light or Bordered. */
.section-alt .feature-card {
    background: var(--color-light);
    /* Yellowish tint on White Section */
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-cta {
    margin-top: 3rem;
}

/* Social Proof */
.testimonial {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-family: serif;
    /* Optional, for "quote" feel */
}

.byline {
    font-weight: 600;
    color: var(--color-secondary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    /* Logic handled by JS toggling hidden or height */
    display: block;
    padding-bottom: 1rem;
    color: #555;
    animation: fadeIn 0.3s ease;
}

.faq-answer[hidden] {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    transition: transform 0.3s;
    font-size: 0.8em;
}

.faq-question[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

.faq-cta {
    margin-top: 3rem;
}

/* Footer */
footer,
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

footer h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

footer a,
.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    opacity: 0.8;
    line-height: 2;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .section-content {
        flex-direction: column;
    }

    .section-image {
        width: 100%;
        order: -1;
        margin-bottom: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--color-light);
        padding: 1rem 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }
}