.index-application-page {
    margin-top: 32px;
}
body .container {
    max-width: 1400px;
}
body h1.title {
    font-size: 24px;
    line-height: 32px;
    color: #17181A;
    font-weight: 600;
}
body h2.title {
    font-size: 20px;
    line-height: 26px;
    color: #17181A;
    font-weight: 700;
}
body h3.title {
    font-size: 18px;
    line-height: 24px;
    color: #17181A;
    font-weight: 700;
}
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
}
.action-buttons .btn {
    margin: 0;
    width: 100%;
    justify-content: center;
}
.action-buttons .btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary-light);
}
.action-buttons .btn:hover svg path {
    fill: var(--primary);
}
/**/
.content {
  display: none;
}
.content.active {
  display: block;
}
.content-wrapper {
    border: 1px solid #F3F3F3;
    border-radius: 0 0 32px 32px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.content-wrapper-main {
    width: calc(100% - 400px);
}
.content .title {
    margin-bottom: 8px;
}
.content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 24px;
    color: #17181A;
}
.benefits-heading {
    font-size: 16px;
    line-height: 24px;
    color: #17181A;
    font-weight: 700;
    margin: 16px 0 8px;
}
.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.partner-benefits li {
    padding-left: 24px;
    position: relative;
}
.partner-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.184 3.42219C12.5032 2.97155 13.1278 2.86478 13.5785 3.18391C14.0291 3.50312 14.1359 4.12777 13.8168 4.57844L8.14978 12.5784C7.97028 12.8318 7.68271 12.9872 7.37243 12.9993C7.10119 13.0099 6.83929 12.9097 6.64489 12.7249L6.56579 12.6409L3.23181 8.64094C2.87827 8.2167 2.93555 7.58534 3.35974 7.23176C3.78398 6.87823 4.41534 6.9355 4.76892 7.35969L7.26892 10.3607L12.184 3.42219Z' fill='%232AA466'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.partner-benefits .benefit-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #17181A;
    margin: 0 0 4px;
}
.partner-benefits li p {
    font-size: 14px;
    line-height: 20px;
    color: #555;
    margin: 0;
}
.partner-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.partner-benefits-list li {
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: #17181A;
}
.partner-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.184 3.42219C12.5032 2.97155 13.1278 2.86478 13.5785 3.18391C14.0291 3.50312 14.1359 4.12777 13.8168 4.57844L8.14978 12.5784C7.97028 12.8318 7.68271 12.9872 7.37243 12.9993C7.10119 13.0099 6.83929 12.9097 6.64489 12.7249L6.56579 12.6409L3.23181 8.64094C2.87827 8.2167 2.93555 7.58534 3.35974 7.23176C3.78398 6.87823 4.41534 6.9355 4.76892 7.35969L7.26892 10.3607L12.184 3.42219Z' fill='%232AA466'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
/**/
.index-application-inner {
    margin-top: 24px;
}
.button-wrapper {
    background-color: #F3F3F3;
    border-radius: 32px 32px 0 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tab-button {
    background-color: #fff;
    border: 1px solid var(--primary-border);
    border-radius: 40px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 14px center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s all ease;
}
.tab-button.active {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}
/**/
.form-content {
    width: 380px;
    border: 1px solid #F3F3F3;
    border-radius: 24px;
    padding: 20px;
}
.block-content {
    margin-top: 24px;
}
.form-content .row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.form-content .row .col {
    width: 100%;
}
.comment-box .title {
    margin: 10px 0 16px;
}
textarea {
    width: 100%;
    padding: 14px 16px 16px;
    font-size: 16px;
    border: 1px solid #cdcfd4;
    border-radius: 16px;
    outline: none;
    height: 56px;
    color: #17181a;
    box-sizing: border-box;
    font-weight: 500;
    min-height: 100px;
}

@media (max-width: 1023px) {
    .form-content {
        width: 320px;
    }
    .content-wrapper-main {
        width: calc(100% - 340px);
    }
}
@media (max-width: 767px) {
    .index-application-page {
        margin-top: 24px;
    }
    body h1.title {
        font-size: 20px;
        line-height: 24px;
    }
    .page-content, .form-content {
        width: 100%;
    }
    .button-wrapper {
        border-radius: 24px 24px 0 0;
    }
    .content-wrapper {
        border-radius: 0 0 24px 24px;
        gap: 40px;
    }
    .content .title {
        font-size: 18px;
        line-height: 24px;
    }
    .action-buttons .btn {
        height: 50px;
        line-height: 50px;
    }
    .button-wrapper {
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .tab-button {
        white-space: nowrap;
    }
    .content-wrapper-main {
        width: 100%;
    }
}
@media (max-width: 479px) {
    .content-wrapper {
        padding: 20px 16px;
    }
    .form-content {
        padding: 20px 16px;
    }
}