body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.site-main {
    flex-grow: 1;
}

.site-footer {
    background-color: #FEE1B5;
    color: #2D2E83;
}

.site-footer p,
.site-footer h3 {
    color: #E94E1B;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: #E94E1B;
    font-size: 1.5rem;
    margin: 4rem 0 1rem 0;
    font-weight: 600;
}

.social-title {
    text-align: center;
}

.footer-text p,
.copyright a,
.footer-links a {
    font-size: 1.25rem;
    margin-bottom: 0;
    text-decoration: none;
}

.forms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.forms-title {
    text-align: end;
}

.forms a {
    color: #E94E1B;
    font-size: 1.25rem;
    text-decoration: none;
}

.forms a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: #FDC758 1px solid;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    text-decoration: none;
    color: #2D2E83;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .forms {
        align-items: center;
    }

    .forms-title {
        text-align: center;
    }
}