.footer-section {
    background-color: #ffffff;
    padding: 100px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 400px;
}

.footer-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
}

.footer-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-icon {
    font-size: 24px;
    color: #374151;
}

.footer-heading {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    gap: 8px;
}

.btn-black {
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn-black:hover {
    transform: translateY(-2px);
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: #fff;
    color: #111;
    border: 1px solid #E5E7EB;
}

.btn-white:hover {
    transform: translateY(-2px);
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #6B7280;
}

.copyright {
    color: #9CA3AF;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link {
    text-decoration: none;
    color: #6B7280;
    transition: color 0.2s;
    font-weight: 500;
}

.social-link:hover {
    color: #111;
}

.social-divider {
    color: #E5E7EB;
}

@media (max-width: 768px) {
    .footer-heading {
        font-size: 2rem;
    }

    .footer-buttons {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        margin-top: 60px;
        border-top: none;
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 1.8rem;
    }

    .footer-buttons {
        gap: 8px;
    }

    .footer-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: unset;
    }
}