/* General Styles for Contact Page */
.contact-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.contact-info {
    flex: 1;
    max-width: 600px;
    margin: 10px;
}

.contact-info h2 {
    color: #005b96;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info a {
    color: #005b96;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #005b96;
    text-decoration: none;
    font-size: 1.2em;
}

.social-links a:hover {
    text-decoration: underline;
}

.social-links i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        margin: 0;
        margin-bottom: 20px;
    }
}