/* ===== Footer ===== */
footer {
    background: #2f4858;
    color: var(--text-light);
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column .logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-column .copyright-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    max-width: 350px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #ccc;
}

.footer-column p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    footer {
        grid-template-columns: 1fr; /* Stack columns vertically */
        text-align: center;
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }

    .footer-column {
        align-items: center; /* Center content in columns */
    }

    .footer-column .logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column .copyright-text {
        max-width: 100%; /* Allow text to take full width */
    }
}