main {
    background: white;
}
  #contactForm {
            display: block;
        }
.contact-container {
    margin: 0 auto;
    width: 85%;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info {
    flex: 1;
    padding-right: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-us-title {
    margin-bottom: 20px;
    color: #232120;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 32px;
}

.contact-us-description {
    margin-bottom: 20px;
    color: #232120;
    line-height: 1.5;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-container {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #1a2b5f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-container svg {
    width: 29px;
    height: 29px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-title {

    color: #232120;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;

}

.info-content {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 20px;
    color: #232120;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #232120;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;


}
button.submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .loader svg {
    vertical-align: middle;
  }
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #FAFAFA;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #1a2b5f;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit {
    background-color: #202F64;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 19px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    border-radius: 36px;
}

.submit:hover {
    background-color: #152348;
}

.error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

input.invalid,
textarea.invalid {
    border-color: #e74c3c;
}

.live-chat {
    display: inline-flex;
    align-items: center;
    background-color: #C12033;
    color: white;
    padding: 10px 15px;
    gap: 16px;
    border-radius: 4px;
    border: none;
    margin-top: 11%;
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;


}

.success-message {
    display: none;
    background-color: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

input::placeholder {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    color: #585858;

}

@media(max-width:986px){
    .contact-container{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-container {
        width: unset;
        padding: 42px 16px;

    }

    .contact-us-title {
        font-family: Montserrat;
        font-weight: 500;
        font-size: 24px;
    }

    .contact-us-description {
        font-weight: 400;
        font-size: 15px;
    }

    .icon-container {
        width: 30px;
        height: 30px;
    }

    .icon-container svg {
        width: 15px;
        height: 14px;
    }

    .info-title {

        font-weight: 600;
        font-size: 15px;
    }

    .info-content {

        font-weight: 400;
        font-size: 15px;

    }

    .live-chat {
        display: inline-flex;
        align-items: center;
        background-color: #C12033;
        color: white;
        padding: 10px 15px;
        border-radius: 4px;
        margin-top: 20px;
        gap: 8px;
        text-decoration: none;
        font-family: Montserrat;
        font-weight: 600;
        font-size: 16px;
    }

    .live-chat svg {
        width: 25px;
        height: 20px;
    }

    .live-arrow {
        width: 20px;
        height: 20px;
    }

    .contact-info {
        margin-bottom: 32px;
    }

    .submit {
        letter-spacing: 1px;
    }

}