body {
    background-color: hsl(230, 100%, 98%);
    font-family: 'Roboto', sans-serif;
}

.service-heading h6 {
    font-size: 15px;
    color: #ff561d;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

.service-heading h2 {
    font-size: 38px;
    color: #000;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.contact-container {
    background: hsl(230, 100%, 98%);
    border: 2px solid #ddd;
    border-radius: 16px;
    padding: 40px;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

.contact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    opacity: 0.9;
}

.contact-info {
    flex: 1;
    color: #333;
    padding-right: 30px;
    margin-top: 70px;
}

.contact-info h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 8px;
}

.contact-icons {
    margin-top: 100px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-highlights {
    margin-top: 30px;
}

.contact-highlights .highlight {
    margin-bottom: 20px;
}

.contact-highlights .highlight h4 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-highlights .highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.divider {
    width: 2px;
    background-color: #ddd;
    height: auto;
}

.form-container {
    flex: 1;
    width: 100%;
    background: hsl(230, 100%, 98%);
    padding: 32px 24px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-container .form-group label {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 12px;
}

.form-container .form-group input,
.form-container .form-group textarea {
    width: 100%;
    /* width: 270px; */
    padding: 12px 16px;
    border-radius: 8px;
    color: #000;
    background-color: transparent;
    border: 1px solid #414141;
    font-family: inherit;
    margin-left: -7%;
}

.form-container .form-group input:focus,
.form-container .form-group textarea:focus {
    outline: none;
    border-color: #ff561d;
}

.form-container .form-submit-btn {
    align-self: flex-start;
    font-family: inherit;
    color: #fff;
    font-weight: 600;
    width: 50%;
    background: #000000;
    border: 1px solid #414141;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.form-container .form-submit-btn:hover {
    background-color: #000;
    border-color: #fff;
}

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

    .divider {
        display: none;
    }

    .form-container {
        width: 100%;
        margin-top: 30px;
        padding: 20px 16px;
    }

    .form-container .form-submit-btn {
        width: 100%;
    }

    .form-container .form-group input,
    .form-container .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        color: #000;
        background-color: transparent;
        border: 1px solid #414141;
        font-family: inherit;
        margin-left: 0px;
    }

    .contact-icons {
        margin-top: 50px;
    }
}