:root {
    --page-support-technical-troubleshooting-primary-color: #FFD700; /* Gold */
    --page-support-technical-troubleshooting-secondary-color: #000000; /* Black */
    --page-support-technical-troubleshooting-accent-color: #DC143C; /* Deep Red */
    --page-support-technical-troubleshooting-text-light: #F0F0F0;
    --page-support-technical-troubleshooting-text-dark: #333333;
    --page-support-technical-troubleshooting-bg-light: #FFFFFF;
    --page-support-technical-troubleshooting-bg-dark: #1a1a1a;
}

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

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

/* Hero Section */
.page-support-technical-troubleshooting__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background: linear-gradient(135deg, var(--page-support-technical-troubleshooting-primary-color) 0%, var(--page-support-technical-troubleshooting-secondary-color) 100%);
    color: var(--page-support-technical-troubleshooting-text-light);
    padding: 60px 20px;
    overflow: hidden;
}

.page-support-technical-troubleshooting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-support-technical-troubleshooting__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--page-support-technical-troubleshooting-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-support-technical-troubleshooting__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--page-support-technical-troubleshooting-text-light);
    opacity: 0.9;
}

.page-support-technical-troubleshooting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* General Section Styling */
.page-support-technical-troubleshooting__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-support-technical-troubleshooting__section:last-of-type {
    border-bottom: none;
}

.page-support-technical-troubleshooting__section-title {
    font-size: 2.5em;
    color: var(--page-support-technical-troubleshooting-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Buttons */
.page-support-technical-troubleshooting__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-support-technical-troubleshooting__btn--primary {
    background-color: var(--page-support-technical-troubleshooting-accent-color);
    color: var(--page-support-technical-troubleshooting-text-light);
    border: 2px solid var(--page-support-technical-troubleshooting-accent-color);
}

.page-support-technical-troubleshooting__btn--primary:hover {
    background-color: #A00F2C; /* A slightly darker red */
    transform: translateY(-2px);
}

.page-support-technical-troubleshooting__btn--secondary {
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-text-dark);
    border: 2px solid var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__btn--secondary:hover {
    background-color: #CCAA00; /* A slightly darker gold */
    transform: translateY(-2px);
}

/* Introduction Section */
.page-support-technical-troubleshooting__introduction p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-support-technical-troubleshooting__introduction strong {
    color: var(--page-support-technical-troubleshooting-accent-color);
}

/* Common Issues Section */
.page-support-technical-troubleshooting__common-issues {
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__common-issues .page-support-technical-troubleshooting__section-title {
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__issue-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.page-support-technical-troubleshooting__issue-card p,
.page-support-technical-troubleshooting__issue-card ul {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__issue-card ul {
    list-style-type: disc;
    padding-left: 25px;
}

.page-support-technical-troubleshooting__issue-card li {
    margin-bottom: 8px;
}

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

/* Registration Guide */
.page-support-technical-troubleshooting__registration-guide {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    color: var(--page-support-technical-troubleshooting-text-dark);
}

.page-support-technical-troubleshooting__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-support-technical-troubleshooting__step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.5;
}

.page-support-technical-troubleshooting__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-support-technical-troubleshooting-primary-color);
    color: var(--page-support-technical-troubleshooting-secondary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-support-technical-troubleshooting__step-list ul {
    list-style-type: circle;
    padding-left: 30px;
    margin-top: 10px;
}

/* Contact Support */
.page-support-technical-troubleshooting__contact-support {
    background-color: #f8f8f8;
    color: var(--page-support-technical-troubleshooting-text-dark);
}

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

.page-support-technical-troubleshooting__channel-item {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__channel-title {
    font-size: 1.5em;
    color: var(--page-support-technical-troubleshooting-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support-technical-troubleshooting__channel-item p {
    font-size: 1em;
    margin-bottom: 10px;
}

.page-support-technical-troubleshooting__channel-item a {
    color: var(--page-support-technical-troubleshooting-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-support-technical-troubleshooting__channel-item a:hover {
    text-decoration: underline;
}

.page-support-technical-troubleshooting__contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support-technical-troubleshooting__contact-tip {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    font-size: 0.95em;
    color: #555;
}

/* Security Tips */
.page-support-technical-troubleshooting__security-tips {
    background-color: var(--page-support-technical-troubleshooting-bg-dark);
    color: var(--page-support-technical-troubleshooting-text-light);
}

.page-support-technical-troubleshooting__security-tips .page-support-technical-troubleshooting__section-title {
    color: var(--page-support-technical-troubleshooting-primary-color);
}

.page-support-technical-troubleshooting__security-tips ul {
    list-style-type: square;
    padding-left: 25px;
    font-size: 1.05em;
}

.page-support-technical-troubleshooting__security-tips li {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-support-technical-troubleshooting__faq {
    background-color: var(--page-support-technical-troubleshooting-bg-light);
    color: var(--page-support-technical-troubleshooting-text-dark);
}

.page-support-technical-troubleshooting__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-support-technical-troubleshooting__faq-question {
    font-size: 1.3em;
    color: var(--page-support-technical-troubleshooting-secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support-technical-troubleshooting__faq-answer {
    font-size: 1.05em;
    line-height: 1.6;
}

/* Call to Action */
.page-support-technical-troubleshooting__call-to-action {
    background-color: var(--page-support-technical-troubleshooting-accent-color);
    color: var(--page-support-technical-troubleshooting-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-support-technical-troubleshooting__call-to-action-content {
    max-width: 800px;
}

.page-support-technical-troubleshooting__call-to-action .page-support-technical-troubleshooting__section-title {
    color: var(--page-support-technical-troubleshooting-text-light);
    margin-bottom: 20px;
}

.page-support-technical-troubleshooting__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support-technical-troubleshooting__title {
        font-size: 2.8em;
    }
    .page-support-technical-troubleshooting__subtitle {
        font-size: 1.2em;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 2em;
    }
    .page-support-technical-troubleshooting__hero {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .page-support-technical-troubleshooting__hero {
        min-height: 300px;
        padding: 40px 20px;
    }
    .page-support-technical-troubleshooting__title {
        font-size: 2.2em;
    }
    .page-support-technical-troubleshooting__subtitle {
        font-size: 1em;
    }
    .page-support-technical-troubleshooting__section {
        padding: 40px 0;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-support-technical-troubleshooting__issue-title {
        font-size: 1.5em;
    }
    .page-support-technical-troubleshooting__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support-technical-troubleshooting__step-list li {
        padding-left: 40px;
        font-size: 1em;
    }
    .page-support-technical-troubleshooting__step-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-support-technical-troubleshooting__contact-channels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-support-technical-troubleshooting__container {
        padding: 0 15px;
    }
    .page-support-technical-troubleshooting__title {
        font-size: 1.8em;
    }
    .page-support-technical-troubleshooting__subtitle {
        font-size: 0.9em;
    }
    .page-support-technical-troubleshooting__section-title {
        font-size: 1.5em;
    }
    .page-support-technical-troubleshooting__issue-title {
        font-size: 1.3em;
    }
    .page-support-technical-troubleshooting__issue-card {
        padding: 20px;
    }
    .page-support-technical-troubleshooting__hero {
        min-height: 250px;
    }
}