/* Contact Page Styles */


body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: 500;
    /* background: #f9f9f9; */
}
.contact-hero {
    background-color: #4e5753;
    text-align: center;
    padding: 4rem 2rem;
    text-decoration: none;
    color: #e95420
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #e95420
    margin-bottom: 1rem;
    text-decoration: none;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info,
.contact-form {
    flex-basis: 48%;

}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    color: #E95420;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 1rem;
    color: #E95420;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    font-size: 1.5rem;
    color: #E95420;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #45a049;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #686262;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #E95420;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.map-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    font-size: 1.8rem;
    color: #E95420;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}
