/* About page CSS */
/* Footer links styling */
.footer-links {
    margin-top: 50px;
    text-align: center;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 20px;
}

.links-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-link {
    color: #6366f1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-link:hover {
        color: #4f46e5;
        text-decoration: underline;
    }

.link-divider {
    color: #ccc;
}

@media (max-width: 768px) {
    .about-container {
        padding: 25px;
        margin: 20px auto;
    }

    .image-quote-wrapper {
        float: none;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .links-container {
        flex-direction: column;
        gap: 12px;
    }

    .link-divider {
        display: none;
    }
}
