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

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

.page-faq-technical-support__hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq-technical-support__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for title */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-faq-technical-support__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

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

.page-faq-technical-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-faq-technical-support__btn--primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFCC00;
}

.page-faq-technical-support__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-faq-technical-support__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Accent color text */
    border: 2px solid #FFCC00;
}

.page-faq-technical-support__btn--secondary:hover {
    background-color: rgba(255, 204, 0, 0.1);
    transform: translateY(-2px);
}

.page-faq-technical-support__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-faq-technical-support__btn--center {
    display: block;
    margin: 30px auto;
    max-width: 300px;
}

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

.page-faq-technical-support__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-faq-technical-support__section-title {
    font-size: 2.2em;
    color: #003366; /* Dark blue */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-technical-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Accent color */
    border-radius: 2px;
}

.page-faq-technical-support__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

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

.page-faq-technical-support__category-title {
    font-size: 1.8em;
    color: #003366; /* Dark blue */
    margin-bottom: 25px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
}

.page-faq-technical-support__issue-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.page-faq-technical-support__issue-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-faq-technical-support__issue-heading {
    font-size: 1.4em;
    color: #004d99; /* Slightly lighter blue */
    margin-bottom: 15px;
}

.page-faq-technical-support__issue-item p {
    margin-bottom: 10px;
    color: #444;
}

.page-faq-technical-support__issue-item ol,
.page-faq-technical-support__issue-item ul {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #444;
}

.page-faq-technical-support__issue-item li {
    margin-bottom: 8px;
}

.page-faq-technical-support__issue-item a {
    color: #0066cc; /* Standard link blue for content links */
    text-decoration: underline;
}

.page-faq-technical-support__issue-item a:hover {
    color: #003366;
}

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

.page-faq-technical-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-faq-technical-support__method-item {
    background-color: #f0f7ff; /* Light blue background */
    border-left: 5px solid #003366;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-faq-technical-support__method-heading {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-faq-technical-support__contact-tip {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

.page-faq-technical-support__tips-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-top: 20px;
    color: #444;
}

.page-faq-technical-support__tips-section li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-faq-technical-support__commitment-section p {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto;
    color: #444;
}

.page-faq-technical-support__join-us {
    text-align: center;
    padding: 50px 0;
    background-color: #003366; /* Dark blue background */
    color: #fff;
    border-radius: 8px;
    margin-top: 50px;
}

.page-faq-technical-support__join-us .page-faq-technical-support__section-title {
    color: #FFCC00; /* Accent color for title */
}

.page-faq-technical-support__join-us .page-faq-technical-support__section-title::after {
    background-color: #fff;
}

.page-faq-technical-support__join-us p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-faq-technical-support__join-us a {
    color: #FFCC00;
    text-decoration: underline;
}

.page-faq-technical-support__join-us a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-technical-support__title {
        font-size: 2em;
    }

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

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

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

    .page-faq-technical-support__issue-heading {
        font-size: 1.2em;
    }

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

    .page-faq-technical-support__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-faq-technical-support__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-faq-technical-support__contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-faq-technical-support__title {
        font-size: 1.7em;
    }

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

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

    .page-faq-technical-support__btn {
        width: 90%;
    }
}