.contact-page {
    padding: 32px 0 0;
}
.custom-file-upload {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border: 1px dashed #A8D898;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}
.file-text {
    font-weight: 500;
    color: #17181A;
    display: flex;
    align-items: center;
    width: 184px;
    gap: 15px;
}
.file-text i {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-image: url(/assets/img/upload_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-color: #F2F7EE;
}
.file-text p {
    margin: 0;
    line-height: 20px;
    text-align: left;
    width: calc(100% - 72px);
}
.file-selected .file-text {
    width: auto;
}
.file-selected .file-text p {
    white-space: nowrap;
}
/* Hide the default input */
#file-upload {
    display: none;
}
.form-group input, .form-group textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #CDCFD4;
    padding: 8px 15px;
    min-height: 56px;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #878D99;
}
.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder { 
  color: #878D99;
}
.contact-inner {
    max-width: 740px;
    margin-inline: auto;
    border: 6px solid #F2F7EE;
    border-radius: 32px;
    padding: 40px;
}
.contact-page h1.title {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 32px;
}
.contact-page .block .title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}
.block .row {
    flex-wrap: wrap;
    gap: 20px;
}
.block .row .col {
    width: calc(50% - 10px);
}
.contact-inner .block {
    margin-bottom: 32px;
}
.contact-page .block .title span.required {
    color: #878D99;
}
.form-group textarea {
    height: 80px;
    padding: 15px;
}
.contact-page .block.comment-box .title {
    margin-bottom: 15px;
}
.btn.form-submit {
    margin: 0;
}
.btn.form-submit {
    margin: 0;
    max-width: 300px;
    width: 100%;
    justify-content: center;
    gap: 8px;
}
.btn.form-submit svg path {
    fill: #fff;
}
.btn.form-submit:hover svg path {
    fill: #2AA466;
}
@media only screen and (max-width: 1023px) {
.contact-inner {
    padding: 32px;
}
.block .row {
    flex-wrap: wrap;
    gap: 16px;
}
.block .row .col {
    width: calc(50% - 8px);
}
}
@media only screen and (max-width: 767px) {
    .contact-inner {
        padding: 0;
        border: 0;
    }
    .block .row .col {
        width: 100%;
    }
    .block .row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .contact-page .block .title {
        margin-bottom: 16px;
    }
    .contact-page h1.title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .contact-inner .block {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 479px) {
    .btn.form-submit {
        max-width: 100%;
    }
    .file-selected .file-text p {
        white-space: initial;
    }
}