/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 20px 0;
    background-color: #2c3e50; /* Updated color */
    color: #fff;
}

header h1 {
    color: #1abc9c; /* Updated color */
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    /* background-color: #fff; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #2c3e50; /* Updated color */
}

.contact-info p, .contact-info ul {
    margin-bottom: 10px;
}

.contact-info ul {
    list-style-type: none;
    padding-left: 0;
}

.contact-info ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #1abc9c; /* Updated color */
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #2c3e50; /* Updated color */
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.contact-form label i {
    margin-right: 5px;
    color: #1abc9c; /* Updated color */
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1abc9c; /* Updated color */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button i {
    margin-right: 5px;
}

.contact-form button:hover {
    background-color: #16a085; /* Slightly darker shade */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        margin-bottom: 20px;
    }
}

/* Map */
.map {
    margin-top: 20px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 30%; /* 16:9 Aspect Ratio */
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2vw;
}

.map:hover {
    transform: scale(1.05);
}

/* Link Styles */
a {
    text-decoration: none;
    color: #1abc9c; /* Updated color */
}

a:hover {
    font-size: large;
    color: #16a085; /* Slightly darker shade */
}
