/* style/faq-technical-support.css */
.page-faq-technical-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-faq-technical-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-technical-support__hero-section {
    background: linear-gradient(135deg, #1A2E47, #3a5c88);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq-technical-support__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-faq-technical-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-faq-technical-support__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E47;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-faq-technical-support__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-technical-support__content-section {
    padding: 60px 0;
}

.page-faq-technical-support__flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-faq-technical-support__main-content {
    flex: 3;
    min-width: 65%;
}

.page-faq-technical-support__sidebar {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: fit-content; /* Ensure sidebar doesn't stretch unnecessarily */
}

.page-faq-technical-support__article {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-faq-technical-support__section-title {
    font-size: 2em;
    color: #1A2E47;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

.page-faq-technical-support__sub-title {
    font-size: 1.5em;
    color: #1A2E47;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-faq-technical-support__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #4a4a4a;
}

.page-faq-technical-support__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-faq-technical-support__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-faq-technical-support__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-faq-technical-support__card {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.page-faq-technical-support__card-title {
    font-size: 1.3em;
    color: #1A2E47;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 8px;
}

.page-faq-technical-support__card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.page-faq-technical-support__sidebar-button {
    display: block;
    width: 100%;
    background-color: #1A2E47;
    color: #FFD700;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-faq-technical-support__sidebar-button:hover {
    background-color: #0d1e33;
    color: #fff;
}

.page-faq-technical-support__sidebar-link {
    display: block;
    color: #1A2E47;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.page-faq-technical-support__sidebar-link:hover {
    color: #FFD700;
}

.page-faq-technical-support__sidebar-link:last-child {
    border-bottom: none;
}

.page-faq-technical-support__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-faq-technical-support__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 220px;
}

.page-faq-technical-support__cta-button--small {
    padding: 12px 20px;
    font-size: 0.95em;
}

.page-faq-technical-support__conclusion {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 50px;
    font-size: 1.1em;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-technical-support__flex-container {
        flex-direction: column;
    }

    .page-faq-technical-support__main-content,
    .page-faq-technical-support__sidebar {
        min-width: 100%;
    }

    .page-faq-technical-support__hero-title {
        font-size: 2.2em;
    }

    .page-faq-technical-support__hero-description {
        font-size: 1em;
    }

    .page-faq-technical-support__section-title {
        font-size: 1.8em;
    }

    .page-faq-technical-support__sub-title {
        font-size: 1.3em;
    }

    .page-faq-technical-support__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-faq-technical-support__cta-button--large {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-faq-technical-support__hero-section {
        padding: 60px 0;
    }

    .page-faq-technical-support__hero-title {
        font-size: 1.8em;
    }

    .page-faq-technical-support__hero-description {
        font-size: 0.9em;
    }

    .page-faq-technical-support__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-technical-support__content-section {
        padding: 40px 0;
    }

    .page-faq-technical-support__article {
        padding: 20px;
    }

    .page-faq-technical-support__section-title {
        font-size: 1.5em;
    }

    .page-faq-technical-support__sub-title {
        font-size: 1.2em;
    }

    .page-faq-technical-support__list {
        margin-left: 15px;
    }

    .page-faq-technical-support__cta-button--large {
        width: 90%;
        max-width: none;
    }
}