/* style/support-technical-troubleshooting.css */

:root {
    --page-support-technical-troubleshooting-primary-color: #1A2B5B;
    --page-support-technical-troubleshooting-secondary-color: #FFD700;
    --page-support-technical-troubleshooting-text-dark: #333333;
    --page-support-technical-troubleshooting-text-light: #FFFFFF;
    --page-support-technical-troubleshooting-bg-light: #F8F9FA;
    --page-support-technical-troubleshooting-bg-dark: #122040;
    --page-support-technical-troubleshooting-border-color: #E0E0E0;
}

.page-support-technical-troubleshooting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-support-technical-troubleshooting-text-dark);
    background-color: var(--page-support-technical-troubleshooting-bg-light);
}

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

.page-support-technical-troubleshooting__hero {
    background: linear-gradient(135deg, var(--page-support-technical-troubleshooting-primary-color), var(--page-support-technical-troubleshooting-bg-dark));
    color: var(--page-support-technical-troubleshooting-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support-technical-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support-technical-troubleshooting__hero > div {
    position: relative;
    z-index: 1;
}

.page-support-technical-troubleshooting__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-support-technical-troubleshooting-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-support-technical-troubleshooting__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-support-technical-troubleshooting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-support-technical-troubleshooting__btn--primary {
    background-color: var(--page-support-technical-troubleshooting-secondary-color);
    color: var(--page-support-technical-troubleshooting-primary-color);
    border-color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__btn--primary:hover {
    background-color: #e5c000;
    border-color: #e5c000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support-technical-troubleshooting__btn--secondary {
    background-color: transparent;
    color: var(--page-support-technical-troubleshooting-secondary-color);
    border-color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__btn--secondary:hover {
    background-color: var(--page-support-technical-troubleshooting-secondary-color);
    color: var(--page-support-technical-troubleshooting-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support-technical-troubleshooting__section {
    padding: 60px 0;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) {
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__section-title,
.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__issue-title,
.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__guide-title,
.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__method-title {
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__btn--secondary {
    color: var(--page-support-technical-troubleshooting-text-light);
    border-color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__btn--secondary:hover {
    background-color: var(--page-support-technical-troubleshooting-text-light);
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__section-title {
    font-size: 2.2em;
    color: var(--page-support-technical-troubleshooting-primary-color);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.page-support-technical-troubleshooting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-support-technical-troubleshooting-secondary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-support-technical-troubleshooting__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support-technical-troubleshooting__issue-card {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-support-technical-troubleshooting-text-dark);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__issue-card {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-support-technical-troubleshooting__issue-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__issue-title {
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__issue-text {
    font-size: 0.95em;
    line-height: 1.7;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__guide-item {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--page-support-technical-troubleshooting-text-dark);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__guide-item {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__guide-title {
    font-size: 1.5em;
    color: var(--page-support-technical-troubleshooting-primary-color);
    margin-bottom: 10px;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__guide-title {
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__guide-item p {
    font-size: 1em;
    line-height: 1.7;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__guide-item ul {
    list-style: disc;
    margin-left: 25px;
    padding-left: 0;
    font-size: 0.95em;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__guide-item ul li {
    margin-bottom: 8px;
}

.page-support-technical-troubleshooting__guide-item strong {
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__guide-item strong {
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

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

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

.page-support-technical-troubleshooting__method-card {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: var(--page-support-technical-troubleshooting-text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__method-card {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.page-support-technical-troubleshooting__method-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__method-title {
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__method-text {
    font-size: 0.95em;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support-technical-troubleshooting__contact-note {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95em;
}

.page-support-technical-troubleshooting__accordion {
    margin-top: 40px;
}

.page-support-technical-troubleshooting__accordion-item {
    border: 1px solid var(--page-support-technical-troubleshooting-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__accordion-item {
    border-color: var(--page-support-technical-troubleshooting-primary-color);
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
}

.page-support-technical-troubleshooting__accordion-header {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__accordion-header {
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__accordion-header:hover {
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
    color: var(--page-support-technical-troubleshooting-secondary-color);
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__accordion-header:hover {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support-technical-troubleshooting__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support-technical-troubleshooting__accordion-content {
    padding: 0 25px;
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support-technical-troubleshooting__section:nth-of-type(even) .page-support-technical-troubleshooting__accordion-content {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__accordion-content p {
    padding: 15px 0;
    font-size: 0.95em;
    line-height: 1.7;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__text {
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 25px auto;
    text-align: center;
    opacity: 0.9;
}

.page-support-technical-troubleshooting__final-cta-image {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support-technical-troubleshooting__hero-title {
        font-size: 2.2em;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-support-technical-troubleshooting__issue-grid,
    .page-support-technical-troubleshooting__contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-support-technical-troubleshooting__hero-cta-group {
      flex-direction: column;
      align-items: center;
    }
    .page-support-technical-troubleshooting__btn {
      width: 80%;
      max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-support-technical-troubleshooting__hero {
        padding: 60px 0;
    }
    .page-support-technical-troubleshooting__hero-title {
        font-size: 1.8em;
    }
    .page-support-technical-troubleshooting__hero-subtitle {
        font-size: 1em;
    }
    .page-support-technical-troubleshooting__section {
        padding: 40px 0;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 1.6em;
    }
    .page-support-technical-troubleshooting__section-description {
        font-size: 0.95em;
    }
    .page-support-technical-troubleshooting__issue-card, 
    .page-support-technical-troubleshooting__method-card, 
    .page-support-technical-troubleshooting__guide-item {
        padding: 20px;
    }
    .page-support-technical-troubleshooting__issue-title,
    .page-support-technical-troubleshooting__guide-title,
    .page-support-technical-troubleshooting__method-title {
        font-size: 1.2em;
    }
    .page-support-technical-troubleshooting__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-support-technical-troubleshooting__accordion-content p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-support-technical-troubleshooting__hero-title {
        font-size: 1.5em;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 1.4em;
    }
    .page-support-technical-troubleshooting__issue-grid,
    .page-support-technical-troubleshooting__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-support-technical-troubleshooting__btn {
      width: 95%;
      padding: 10px 20px;
    }
}