/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eef2f3;
    color: #2c3e50;
}

h1, h2 {
    margin: 0;
    padding: 0.5em 0;
}

/* Header */
header {
    background-color: #109664;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
}

nav {
    display: flex;
    gap: 1em;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

nav a:hover {
    background-color: #16a085;
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    padding: 2em;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin: 2em auto;
    width: 85%;
    max-width: 900px;
}

#contact h1 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #34495e;
}

#contact h2 {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #2c3e50;
}

#contact > div {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    flex-wrap: wrap;
}

.cDiv {
    margin-bottom: 1.5em;
    flex: 1 1 calc(50% - 1em);
    min-width: 250px;
}

.cDiv h2 {
    font-size: 1.4em;
    color: #34495e;
    margin-bottom: 0.5em;
}

.cDiv a {
    text-decoration: none;
    color: #3498db;
    font-size: 1.1em;
    transition: color 0.3s, text-shadow 0.3s;
}

.cDiv a:hover {
    color: #2980b9;
    text-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    #contact > div {
        flex-direction: column;
        align-items: center;
    }

    .cDiv {
        width: 100%;
        text-align: center;
    }
}