.contact-section {
    position: relative; /* Asegurar que esté por encima de otros elementos */
    z-index: 10; /* Colocar por encima del fondo de partículas */
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03); /* Fondo similar a las tarjetas de proyecto */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    color: white; /* Texto blanco para contraste */
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-section p {
    font-size: 1rem;
    margin: 10px 0;
    color: #555;
}

.contact-section a {
    color: #0073b1;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-section .social-icons {
    margin-top: 15px;
}

.contact-section .social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2rem;
    color: #555;
}

.contact-section .social-icons a:hover {
    color: #0073b1;
}