.footer {
    background-color: var(--lot-green);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--white);
}

.email-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

.created-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.social-placeholder {
    color: var(--white);
    font-style: italic;
    opacity: 0.7;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section:first-child {
        order: 1;
    }

    .footer-section:last-child {
        order: 2;
    }

    .footer-links {
        align-items: flex-start;
    }
}
