body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, h4 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

/* Updated Footer Layout - Sage Green & 3-Column */
.site-footer {
    padding: 40px 0;
    background-color: #A8D5BA !important; /* Sage Green */
    border-top: 1px solid #e5e7eb;
    margin-top: 50px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 150px 1fr 2fr; /* [Logo] [Quick Links] [Disclaimer] */
    align-items: start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav h4 {
    text-align: left;
    margin-bottom: 15px;
    color: #333;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.footer-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #D4AF37;
}

.footer-center {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-center h4 {
    text-align: left;
    margin-bottom: 10px;
    color: #333;
}

.footer-center p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 15px;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav h4, .footer-center h4 {
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Helper Classes */
.text-center {
    text-align: center !important;
}

.section-header {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
