/* Header Styles */

.main-header {
    background: #FFFCF7;
    border-bottom: 1px solid #E8E4DF;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    font-family: 'DM Sans', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #6B6560;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #609d45;
}

.btn-cta {
    border: 2px solid #609d45;
    color: #609d45;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #609d45;
    color: white;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }
}

/* Footer Styles */

.footer {
    background: #232e30;
    padding: 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #3a4547;
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 15px;
    color: #A39E98;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-middle {
    font-size: 12px;
    color: #A39E98;
    margin-bottom: 14px;
}

.footer-middle a {
    color: #609d45;
    text-decoration: none;
}

.footer-compliance {
    font-size: 10px;
    color: #A39E98;
    margin-bottom: 6px;
}

.footer-compliance a {
    color: #A39E98;
    text-decoration: none;
}

.footer-compliance a:hover {
    text-decoration: underline;
}

.footer-compliance span {
    margin: 0 6px;
}

.footer-copyright {
    font-size: 11px;
    color: #A39E98;
}
