* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Header */
.contact-header {
    background: linear-gradient(to right, #005c9d, #00aaff);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 20px;
}

/* Contact Section Layout */
.contact-section {
    padding: 50px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.info-box {
    background: #eaf6ff;
    padding: 20px;
    border-left: 4px solid #007acc;
    margin-bottom: 15px;
    border-radius: 6px;
}

.info-box h3 {
    color: #005c9d;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: #f7faff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    min-width: 300px;
}

.contact-form h2 {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00aaff;
}

.contact-form button {
    background: #007acc;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #005c9d;
}

/* Map Section */
.map-section {
    margin-top: 40px;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}
