/* Basic Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff;
    color: #003366;
}

/* Container */
.contact-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

/* Heading */
.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #004080;
}

/* Layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 280px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #b3d1ff;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ffffff;
}

.contact-form button {
    padding: 12px;
    background-color: #0059b3;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #004080;
}

/* Contact Links */
.contact-links {
    flex: 1;
    min-width: 280px;
}

.contact-links h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0059b3;
}

.contact-links ul {
    list-style: none;
}

.contact-links li {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-links i {
    margin-right: 10px;
    color: #0059b3;
    width: 20px;
    text-align: center;
}

.contact-links a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #007bff;
}

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