/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 20px 30px;
    border-bottom: 2px solid #ddd;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text a {
    font-size: 24px;
    font-weight: bold;
    color: #e77d26;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.navbar a:hover {
    color: black;
    background-color: transparent;
    border-bottom: 1px solid #f4a523;
    border-top: 1px solid #f4a523;
    padding: 5px;
    transition: all 0.3s ease;
}

.contact-btn  {
    background-color: #e77d26;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-btn:hover {
    background-color: transparent;
    color: black;
    border: 1px solid #f4a523;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #e77d26;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Contact Info */
.contact-info {
    width: 40%;
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Right Contact Form */
.contact-form {
    width: 50%;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

.submit-btn {
    background-color: #e77d26;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: transparent;
    color: black;
    border: 1px solid #f4a523;
}

/* Map Section */
.map-container {
    margin-top: 30px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar{
        display: none;
    }
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }
}
