* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    color: #494949;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #718096;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-icon::before {
    content: "📧";
    font-size: 24px;
}

.contact-us-label {
    color: #f80035;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-main-heading {
    font-size: 38px;
    color: #170644;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 55px;
}

.sub-heading {
    font-size: 28px;
    color: #494949;
    margin-bottom: 30px;
    font-weight: 500;
}

.description {
    color: #494949;
    margin-bottom: 40px;
    line-height: 1.6;
}

.offices {
    display: flex;
    gap: 60px;
}

.office {
    flex: 1;
}

.office h3 {
    font-size: 24px;
    color: #170644;
    margin-bottom: 20px;
    font-weight: 600;
}

.office-info {
    color: #494949;
    line-height: 1.8;
}

.office-info div {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    background: #f7fafc;
    font-family: "Lexend", sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #3182ce;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 50px;
    background-color: #170644;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 1px;
    word-spacing: 0px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px;
}

.submit-btn:hover {
    background: #2d3748;
}

.google-map-c {
    margin-top: 60px;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-main-heading {
        font-size: 32px;
        line-height: 46px;
    }

    .sub-heading {
        font-size: 24px;
    }

    .offices {
        gap: 30px;
    }

    .contact-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 0;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-info {
        padding-right: 0;
        /* text-align: center; */
    }

    .contact-main-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .sub-heading {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .offices {
        flex-direction: column;
        gap: 10px;
    }

    .office h3 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .form-input {
        font-size: 15px;
        padding: 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 0px;
    }
}

@media (max-width: 480px) {
    .contact-main-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .office-info {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 0px;
    }
}