.support-accordion {
    margin: 0 auto;
}
.accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
}
.accordion-icon img {
    width: 32px;
    height: 32px;
}
.accordion-title {
    flex: 1;
    margin: 0 1rem;
    font-size: 1rem;
    color: #0C3058;
    font-weight: 500;
}
.accordion-toggle {
    transition: transform 0.3s ease;
}
.accordion-item.open .accordion-toggle {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
    overflow: hidden;
}
.accordion-item.open .accordion-content {
    padding: 1rem 1.5rem;
    max-height: 15000px;
}

#contactForm form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#contactForm .row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
#contactForm .row.half > .field {
    flex: 1;
}
#contactForm .field {
    display: flex;
    flex-direction: column;
    flex: 1;
}
#contactForm label {
    margin-bottom: 16px;
    font-weight: bold;
    color: #0C3058;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #bcc7d6;
    border-radius: 4px;
}
#contactForm textarea { resize: vertical; }
#contactForm .error {
    border-color: #e63946 !important;
}
#contactForm .error-msg {
    color: #e63946;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}
#contactForm .file-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    list-style: none;
}
#contactForm .file-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
    padding: 0 0 8px;
    border-bottom: 1px solid #C3CFE7;
}
#contactForm .file-list li > .file-list-li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
#contactForm .file-list li > .file-list-button {
    display: flex;
}
#contactForm .file-list li .file-list-size-span {
    display: flex;
    margin-right: 32px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    text-align: right;
    color: #546E8A;
}
#contactForm #filePreviewList > li {
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
    border-bottom: none;
}
#contactForm .file-list button {
    background: none;
    border: none;
    color: #e63946;
    cursor: pointer;
    font-size: 1.2rem;
}
#contactForm .submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #0C3058;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#contactForm .submit-btn:disabled {
    background: #66737d;
    cursor: not-allowed;
}
#contactForm .success, .failure {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}
#contactForm .success { color: #2a9d8f; }
#contactForm .failure { color: #e63946; }
#contactForm > div:nth-child(2) > div:nth-child(2) > span > span.selection > span {
    min-height: 36px;
}
#select2-subject-container {
    min-height: 36px;
}

#contactForm .file-upload-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 248px;
    gap: 12px;
    padding: 20px 12px;
    border: 1px dashed #1473F5;
    border-radius: 8px;
    position: relative;
}
#contactForm .file-drop-area {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
#contactForm .file-drop-area.is-dragover {
    background: #f0f8ff;
    border-color: #0055cc;
}
#contactForm .file-drop-icon {
    font-size: 32px;
    color: #3386F7;
    margin-bottom: 8px;
}
#contactForm .file-drop-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0C3058;
}
#contactForm .file-select-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    padding: 12px 25px;
    gap: 10px;
    max-width: max-content;
    width: 100%;
    height: 56px;
    background: transparent;
    border: 1px solid #C3CFE7;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0068F5;
}
#contactForm .file-input {
    position: absolute; top:0; left:0;
    width:100%; height:100%;
    opacity:0;
    cursor: pointer;
}
#contactForm .file-list {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}
#contactForm .file-list .file-item {
    display: flex;
    align-items: center;
    border: 1px dotted #3386F7;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 6px;
}
#contactForm .file-list .file-icon {
    font-size: 20px;
    margin-right: 8px;
    color: #3386F7;
}
#contactForm .file-list .file-name {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: #0068F5;
}
#contactForm .file-list .remove-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #f44336;
    cursor: pointer;
}
#contactForm #errorMsg,
#contactForm .error-msg[data-for="files"] {
    color: #f44336;
    margin-top: 4px;
    font-size: .85em;
}
#contactForm .file-preview .file-item,
#contactForm #fileList .file-item {
    display: flex;
    align-items: center;
    border: 1px dotted #3386F7;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 8px;
}
#contactForm .file-preview .file-item .file-name,
#contactForm #fileList .file-item .file-name {
    flex:1;
    color:#0068F5;
}
#contactForm .btn-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    gap: 10px;
    max-width: max-content;
    width: 100%;
    height: 48px;
    background: #0068F5;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    cursor:pointer;
}
#contactForm .btn-outline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    max-width: max-content;
    width: 100%;
    height: 48px;
    background: transparent;
    border: 1px dashed #C3CFE7;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #0068F5;
}
#contactForm .file-drop-area {
    display: block;
}
#contactForm .file-upload-container-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
#contactForm .file-upload-preview-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
#contactForm .file-upload-container-close {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 17px;
    left: 17px;
    cursor: pointer;
}


.faq-item {
    padding: 16px 0 0;
    border-bottom: 1px solid #e0e6ef;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    cursor: pointer;
    color: #0C3058;
    font-weight: 500;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    color: #687E97;
}
.faq-item.open {
    border: 1px solid transparent;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 8px 0;
    background: #FAFBFC;
}
.faq-item svg {
    transform: rotate(0);
    transition: all 0.3s;
}
.faq-item.open svg {
    transform: rotate(180deg);
    transition: all 0.3s;
}

#contactForm > div:nth-child(2) > div:nth-child(2) > span > span.selection > span > span.select2-selection__arrow {
    top: 5px;
    left: 15px;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
    margin-top: 3px;
}

#contactForm label span {
    color: #C93435;
}

.file-upload-container-button_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin-top: 10px;
}

@media (max-width: 768px) {
    #contactForm .row {
        flex-direction: column;
    }
    #contactForm .file-list li > .file-list-li {
        flex-wrap: wrap;
    }
    #contactForm .file-upload-container-button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .file-upload-container-button_inner {
        margin-top: 20px;
        margin-right: 0;
    }
}