* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background-color: #1d1f23;
    color: #9ca3af;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-main-title {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.footer-subtitle {
    color: #d1d5db;
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #374151;
    margin: 0.5rem 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links .link-separator {
    color: #4b5563;
    font-size: 0.875rem;
    user-select: none;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-main-title {
        font-size: 1.5rem;
    }

    .footer-subtitle {
        font-size: 0.875rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

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

    .footer-bottom-links .link-separator {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-main-title {
        font-size: 1.25rem;
    }
}
