/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;

    color: #333;
}
html{
    font-size: 62.5%;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.contact-content_image_iner{
    background-color: #efeeec;

}
/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #010305;
}

.contact-header p {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 1.2rem;
    color: #323234;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns:  1fr 1fr;
    gap: 3rem;
}
.contact-content .contact-content_image .contact-content_image_iner img{
    width: 100%;
    aspect-ratio: 9 / 8;
    object-fit: cover;
}
.contact-form {
   width: 100%;
}



/* Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.form-group {
    width: 100%;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;

}

.contact-form button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #214b3d;
    color: #efeeec;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #efeeec;
    color: #171616;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        display: grid;
        grid-template-columns:  1fr;
        gap: 3rem;
    }
    .contact-content {
        flex-direction: column;
    }


    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}
