/* Basic styles for the support page */
body {
    background-color: #ffffff;
    color: #090909;
}

.hero-section {
    background: linear-gradient(to top, #4d7cf2 0.624%, #1758fe 95.571%);
    height: 550px;
    position: relative;
    width: 100%;
    color: white;
    text-align: center;
}
.hero-main-content p {
    margin: 14px;
}

.faq-section {
    padding: 80px 40px;
    background-color: #fff;
    text-align: center;
}

.faq-section h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 60px;
}

.faq-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: right;
}

.faq-item.active {
    background-color: #f3f5fb;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #4a4a4a;
    display: none;
}

.guides-section {
    background-color: #f3f5fb;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.guide-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: right;
    width: 610px;
}

.guide-card h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.guide-card p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.btn-download {
    border: 1px solid black;
    background-color: transparent;
    border-radius: 56px;
    padding: 10px 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 100px 40px;
}

.contact-info {
    max-width: 380px;
}

.contact-info h2 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}

.contact-info p {
    font-size: 24px;
    line-height: 1.5;
    margin: 20px 0;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.contact-form {
    width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group label span {
    color: #b62727;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #edeff0;
    border-radius: 12px;
}

.btn-submit {
    background-color: #1758fe;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

body.dark-mode .faq-section,
body.dark-mode .guides-section,
body.dark-mode .contact-section {
    background-color: #051640;
}

body.dark-mode .faq-section h2,
body.dark-mode .faq-question,
body.dark-mode .guide-card h3,
body.dark-mode .contact-info h2,
body.dark-mode .contact-info p,
body.dark-mode .contact-details h4,
body.dark-mode .form-group label {
    color: #fff;
}

body.dark-mode .faq-answer,
body.dark-mode .guide-card p {
    color: #a0aec0;
}

body.dark-mode .faq-item,
body.dark-mode .guide-card {
    background-color: #1E2D53;
    border-color: #1E2D53;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background-color: #1E2D53;
    border-color: #1E2D53;
    color: #fff;
}

body.dark-mode .btn-download {
    color: #fff;
    border-color: #fff;
}

body.dark-mode .btn-download img {
    filter: invert(1);
}

@media (max-width: 1130px) {
    .faq-section {
        padding: 60px 20px;
    }
    .faq-section h2, .contact-info h2 {
        font-size: 32px;
    }
    .faq-container {
        flex-direction: column;
    }
    .guides-section {
        flex-direction: column;
        padding: 60px 20px;
    }
    .guide-card {
        width: 100%;
        box-sizing: border-box;
    }
    .contact-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }
    .contact-form {
        width: 100%;
    }
    .form-group input, .form-group textarea{
        width: 90%;
    }
    .guide-card h3 {
        font-size: 24px;
    }
    .guide-card p {
        font-size: 18px;
    }
    .contact-info p {
        font-size: 18px;
    }
}
