* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5faff;
}

/* Heading */
.heading {
    text-align: center;
    padding: 40px 20px;
}

.heading h1 {
    color: #00ccff;
    font-size: 32px;
}

.heading p {
    color: #555;
}

/* Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Info Section */
.contact-info {
    flex: 1;
    min-width: 280px;
}

.box {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #00ccff;
    border-radius: 8px;
}

.box h3 {
    margin-bottom: 10px;
}

.box a {
    color: #333;
    text-decoration: none;
}

/* Highlight */
.highlight {
    background: #00ccff;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Form */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #00ccff;
}

.contact-form label {
    display: block;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    margin-top: 15px;
    background: #00ccff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0099cc;
}

/* Map */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
}

/* Responsive */
@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }
}