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

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

.page-faq-technical-support__hero {
    background: linear-gradient(135deg, #0056b3, #003d7a);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-faq-technical-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-technical-support__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

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

.page-faq-technical-support__hero-image {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 400px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(10deg);
}

.page-faq-technical-support__image {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-faq-technical-support__section {
    padding: 60px 0;
    background-color: white;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

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

.page-faq-technical-support__section-title {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.page-faq-technical-support__issue-grid, .page-faq-technical-support__guide-cards, .page-faq-technical-support__contact-methods, .page-faq-technical-support__commitment-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.page-faq-technical-support__issue-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-faq-technical-support__issue-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-faq-technical-support__issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-faq-technical-support__issue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-faq-technical-support__issue-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq-technical-support__issue-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.page-faq-technical-support__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #444;
}

.page-faq-technical-support__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-faq-technical-support__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #0056b3;
}

.page-faq-technical-support__list-ordered {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: #444;
}

.page-faq-technical-support__list-ordered li {
    margin-bottom: 8px;
}

.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, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-faq-technical-support__btn--primary {
    background-color: #ffd700; /* Gold */
    color: #0056b3; /* Deep Blue */
    border: 2px solid #ffd700;
}

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

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

.page-faq-technical-support__btn--secondary:hover {
    background-color: #ffd700;
    color: #0056b3;
    transform: translateY(-2px);
}

.page-faq-technical-support__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

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

.page-faq-technical-support__btn--outline {
    background-color: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.page-faq-technical-support__btn--outline:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.page-faq-technical-support__guide-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-faq-technical-support__guide-card {
    background-color: #fefefe;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-faq-technical-support__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-faq-technical-support__guide-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 8px;
    object-fit: cover;
}

.page-faq-technical-support__guide-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq-technical-support__guide-text {
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-faq-technical-support__contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}

.page-faq-technical-support__contact-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-faq-technical-support__contact-item:hover {
    transform: translateY(-5px);
}

.page-faq-technical-support__contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-faq-technical-support__contact-label {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-faq-technical-support__contact-detail {
    color: #666;
    margin-bottom: 20px;
}

.page-faq-technical-support__contact-tip {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
    font-size: 1.1em;
}

.page-faq-technical-support__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-faq-technical-support__commitment-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-faq-technical-support__commitment-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-faq-technical-support__commitment-heading {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq-technical-support__commitment-text {
    color: #666;
}

.page-faq-technical-support__cta-bottom {
    background-color: #0056b3;
    color: white;
    padding: 70px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.page-faq-technical-support__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-faq-technical-support__hero-title {
        font-size: 2.8em;
    }
    .page-faq-technical-support__section-title, .page-faq-technical-support__cta-title {
        font-size: 2em;
    }
    .page-faq-technical-support__hero-image {
        width: 300px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .page-faq-technical-support__hero {
        padding: 60px 0;
    }
    .page-faq-technical-support__hero-title {
        font-size: 2.2em;
    }
    .page-faq-technical-support__hero-description {
        font-size: 1em;
    }
    .page-faq-technical-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq-technical-support__section {
        padding: 40px 0;
    }
    .page-faq-technical-support__section-title {
        font-size: 1.8em;
    }
    .page-faq-technical-support__section-intro {
        font-size: 0.95em;
    }
    .page-faq-technical-support__issue-grid, .page-faq-technical-support__guide-cards, .page-faq-technical-support__contact-methods, .page-faq-technical-support__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-faq-technical-support__hero-image {
        display: none;
    }
    .page-faq-technical-support__cta-title {
        font-size: 2em;
    }
    .page-faq-technical-support__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq-technical-support__hero-title {
        font-size: 1.8em;
    }
    .page-faq-technical-support__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq-technical-support__section-title, .page-faq-technical-support__cta-title {
        font-size: 1.6em;
    }
    .page-faq-technical-support__issue-card, .page-faq-technical-support__guide-card, .page-faq-technical-support__contact-item, .page-faq-technical-support__commitment-item {
        padding: 20px;
    }
    .page-faq-technical-support__issue-title {
        font-size: 1.3em;
    }
    .page-faq-technical-support__guide-title {
        font-size: 1.5em;
    }
    .page-faq-technical-support__contact-label {
        font-size: 1.2em;
    }
    .page-faq-technical-support__commitment-heading {
        font-size: 1.4em;
    }
}