:root {
    --sage-light: #C2C8B8;
    --sage-medium: #8FA382;
    --sage-dark: #3A4D39;
    --cream-bg: #FDFBF7;
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(58, 77, 57, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--cream-bg); 
    color: var(--sage-dark); 
    line-height: 1.8; 
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.3; }

.container { 
    padding: 5rem 4%; 
    max-width: 1600px; 
    margin: 0 auto; 
}

/* NAVIGATION */
header {
    background-color: var(--cream-bg);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(143, 163, 130, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--sage-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

nav a:hover { color: var(--sage-medium); }

.nav-cta, .btn-action {
    background-color: var(--sage-medium) !important;
    color: white !important;
    padding: 0.9rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.nav-cta:hover, .btn-action:hover {
    background-color: var(--sage-dark) !important;
    transform: translateY(-2px);
}

/* ACCORDION (FAQs) */
.faq-container { max-width: 1000px; margin: 0 auto; text-align: left; }
.faq-item {
    border-bottom: 1px solid var(--sage-light);
    padding: 1.5rem 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Lora', serif;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #555;
    margin-top: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}
.faq-icon::before { content: '+'; font-size: 1.5rem; color: var(--sage-medium); }
.faq-item.active .faq-icon::before { content: '−'; }

/* FOOTER */
footer {
    background-color: #F4F2EE;
    padding: 5rem 4% 3rem 4%;
    border-top: 1px solid rgba(143, 163, 130, 0.1);
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-socials a {
    color: var(--sage-dark);
    font-size: 4.5rem; /* 2.5x Increase */
    transition: 0.3s;
}

.footer-socials a:hover { color: var(--sage-medium); }

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .container { grid-template-columns: 1fr !important; text-align: center; gap: 3rem !important; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    nav { gap: 1.5rem; }
}