.contact-section {
    max-width: 80vw;           
    margin: 5vh auto;          
    padding: 3vh 2vw;         
    text-align: center;       
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 1vw;       
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

.contact-section h1 {
    font-size: 3vw;
    margin-bottom: 2vh;
    color: #333;
}

.contact-section h2 {
    font-size: 1.5vw;
    margin: 1vh 0;
    color: #555;
}

.contact-section a {
    color: #0077cc;          
    text-decoration: none;     
}

.contact-section a:hover {
    text-decoration: underline;
    color: #005fa3;            
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 6vw;
    }
    .contact-section h2 {
        font-size: 4vw;
    }
}
