.contact-section {
    background: white;
    padding: 50px 20px;
    text-align: center;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    color: #0A3D62; /* Deep Royal Blue */
    margin-bottom: 20px;
}

.contact-box {
    background: #C19A6B; /* Light background for contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-box p {
    font-size: 1rem;
    color: #222;
    margin: 10px 0;
}

.contact-box a {
    color: #0A3D62; /* Matching theme color */
    text-decoration: none;
    font-weight: bold;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-box {
        padding: 15px;
    }
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .contact-box p {
        font-size: 0.95rem;
    }
}
