.contact-section {
    position: relative;
}
.contact-form-wrapper {
    margin: 0;
}
.contact-form-wrapper .wpcf7-form-inner {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}
.contact-section .contact-form-wrapper .cta-button  {
    justify-content: center;
}
.contact-section .contact-form-wrapper .cta-button .revana-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-color);
    color: var(--white-color);
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3333;
    text-decoration: none;
    transition: all 0.3s ease;
    outline: none;
}
.contact-section .contact-form-wrapper .cta-button .revana-btn:hover {
    color: var(--white-color);
}
.contact-section .contact-form-wrapper .cta-button .revana-btn.with-arrow {
    padding-right: 24px;
}
.contact-section .contact-form-wrapper .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.contact-section .contact-form-wrapper .grid.column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
}
.contact-section .contact-form-wrapper .grid.column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}
.contact-section .contact-form-wrapper .grid .input-items,
.contact-section .contact-form-wrapper .grid .input-items > p {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-section .contact-form-wrapper .grid .input-items br {
    display: none !important;
}
.contact-section .contact-form-wrapper .grid .input-items label {
    display: block;
    margin: 0;
    padding: 0;
    line-height: normal;
    font-size: 18px;
    color: var(--title-color);
    font-weight: 400;
}
.contact-section .contact-form-wrapper .grid .input-items .wpcf7-form-control {
    width: 100%;
    padding: 20px;
    border: solid 1px #A2A2A2;
    border-radius: 8px;
    background: var(--white-color);
    color: var(--title-color);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    outline: none;
    box-shadow: none;
    height: auto;
    font-family: 'Inter', sans-serif;
}