/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.socials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* FAQ Message Section */
.faq-message {
    text-align: center;
    margin-top: 30px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
}

.faq-message a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.faq-message a:hover {
    color: #cccccc;
}

