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

.page-support-technical-support-troubleshooting h1, .page-support-technical-support-troubleshooting h2, .page-support-technical-support-troubleshooting h3 {
    color: #1A2B4C;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-support-technical-support-troubleshooting h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-technical-support-troubleshooting h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.page-support-technical-support-troubleshooting h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support-technical-support-troubleshooting h3 {
    font-size: 1.6rem;
    color: #1A2B4C;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-support-technical-support-troubleshooting p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.page-support-technical-support-troubleshooting strong {
    color: #1A2B4C;
}

.page-support-technical-support-troubleshooting__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #3a507c 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-support-technical-support-troubleshooting__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-support-technical-support-troubleshooting__hero-content h1 {
    color: #FFD700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-support-technical-support-troubleshooting__hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.page-support-technical-support-troubleshooting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-support-technical-support-troubleshooting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) blur(3px);
    transform: scale(1.1);
}

.page-support-technical-support-troubleshooting__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-support-technical-support-troubleshooting__btn--primary {
    background-color: #FFD700;
    color: #1A2B4C;
}

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

.page-support-technical-support-troubleshooting__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support-technical-support-troubleshooting__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support-technical-support-troubleshooting__btn--link {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 15px;
}

.page-support-technical-support-troubleshooting__btn--link:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    border-color: #FFD700;
}

.page-support-technical-support-troubleshooting__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

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

.page-support-technical-support-troubleshooting__issue-card {
    background-color: #f0f4f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #FFD700;
}

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

.page-support-technical-support-troubleshooting__issue-card h3 {
    color: #1A2B4C;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.page-support-technical-support-troubleshooting__issue-card p {
    font-size: 1rem;
    color: #555;
}

.page-support-technical-support-troubleshooting__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item h3 {
    color: #FFD700;
    border-bottom: 2px solid #1A2B4C;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item p {
    color: #333;
    margin-bottom: 15px;
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item ul {
    list-style: none;
    padding-left: 0;
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item ul li {
    background-color: #eef3f7;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #222;
    display: flex;
    align-items: flex-start;
}

.page-support-technical-support-troubleshooting__troubleshooting-guides .page-support-technical-support-troubleshooting__guide-item ul li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-support-technical-support-troubleshooting__channel-card {
    background-color: #1A2B4C;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support-technical-support-troubleshooting__channel-card:hover {
    transform: translateY(-8px);
    background-color: #2b406b;
}

.page-support-technical-support-troubleshooting__channel-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.page-support-technical-support-troubleshooting__channel-card p {
    color: #e0e0e0;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.page-support-technical-support-troubleshooting__security-tips ul {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-support-technical-support-troubleshooting__security-tips ul li {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-left: 5px solid #1A2B4C;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #333;
}

.page-support-technical-support-troubleshooting__security-tips ul li strong {
    color: #1A2B4C;
}

.page-support-technical-support-troubleshooting__commitment p {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-support-technical-support-troubleshooting__commitment .page-support-technical-support-troubleshooting__btn--primary {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support-technical-support-troubleshooting h1 {
        font-size: 2.2rem;
    }
    .page-support-technical-support-troubleshooting h2 {
        font-size: 1.8rem;
    }
    .page-support-technical-support-troubleshooting h3 {
        font-size: 1.4rem;
    }
    .page-support-technical-support-troubleshooting__hero {
        padding: 60px 15px;
    }
    .page-support-technical-support-troubleshooting__hero-content p {
        font-size: 1.1rem;
    }
    .page-support-technical-support-troubleshooting__btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .page-support-technical-support-troubleshooting__section {
        padding: 40px 15px;
    }
    .page-support-technical-support-troubleshooting__issue-grid, 
    .page-support-technical-support-troubleshooting__channel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-support-technical-support-troubleshooting h1 {
        font-size: 1.8rem;
    }
    .page-support-technical-support-troubleshooting h2 {
        font-size: 1.6rem;
    }
    .page-support-technical-support-troubleshooting__hero-content p {
        font-size: 1rem;
    }
    .page-support-technical-support-troubleshooting__btn {
        margin: 8px 5px;
    }
    .page-support-technical-support-troubleshooting__btn--primary, 
    .page-support-technical-support-troubleshooting__btn--secondary {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-support-technical-support-troubleshooting__issue-card, 
    .page-support-technical-support-troubleshooting__channel-card {
        padding: 20px;
    }
}