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

.page-download-center-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-download-center-troubleshooting__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 50%, #E0B34C 100%); /* Adjusted gradient for better contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for text readability */
    z-index: 1;
}

.page-download-center-troubleshooting__hero > * {
    position: relative;
    z-index: 2;
}

.page-download-center-troubleshooting__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #E0B34C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-troubleshooting__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-troubleshooting__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-download-center-troubleshooting__section-title {
    font-size: 2em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-download-center-troubleshooting__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #E0B34C;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-download-center-troubleshooting__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-download-center-troubleshooting__faq-item {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #E0B34C;
}

.page-download-center-troubleshooting__faq-question {
    font-size: 1.4em;
    color: #0A2E36;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-troubleshooting__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #E0B34C;
    transition: transform 0.3s ease;
}

.page-download-center-troubleshooting__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center-troubleshooting__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-download-center-troubleshooting__faq-answer.active {
    max-height: 1000px; /* Adjust as needed */
    transition: max-height 0.7s ease-in;
}

.page-download-center-troubleshooting__solution-title {
    font-size: 1.2em;
    color: #0A2E36;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-download-center-troubleshooting__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #555;
}

.page-download-center-troubleshooting__list li {
    margin-bottom: 8px;
}

.page-download-center-troubleshooting__highlight {
    color: #0A2E36;
    font-weight: bold;
}

.page-download-center-troubleshooting__code {
    font-family: 'Courier New', monospace;
    background-color: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    color: #c82333;
}

.page-download-center-troubleshooting__button {
    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;
    margin-top: 20px;
    cursor: pointer;
}

.page-download-center-troubleshooting__button--primary {
    background-color: #E0B34C;
    color: #0A2E36; /* Ensure high contrast */
    border: 2px solid #E0B34C;
}

.page-download-center-troubleshooting__button--primary:hover {
    background-color: #c79f3e;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-download-center-troubleshooting__button--secondary {
    background-color: #0A2E36;
    color: #E0B34C; /* Ensure high contrast */
    border: 2px solid #0A2E36;
    margin-left: 10px;
}

.page-download-center-troubleshooting__button--secondary:hover {
    background-color: #1a4f5d;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-download-center-troubleshooting__image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-troubleshooting__image--small {
    max-width: 60%;
}

.page-download-center-troubleshooting__image--medium {
    max-width: 80%;
}

.page-download-center-troubleshooting__image--large {
    max-width: 100%;
}

.page-download-center-troubleshooting__section--cta {
    background-color: #0A2E36;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
    border-radius: 0;
    box-shadow: none;
}

.page-download-center-troubleshooting__section--cta .page-download-center-troubleshooting__section-title {
    color: #E0B34C;
}

.page-download-center-troubleshooting__section--cta .page-download-center-troubleshooting__text {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-troubleshooting__section--cta .page-download-center-troubleshooting__section-title::after {
    background-color: #ffffff;
}

.page-download-center-troubleshooting__additional-info {
    background-color: #f2f7f9;
    padding-bottom: 80px;
}

.page-download-center-troubleshooting__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-download-center-troubleshooting__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0A2E36;
}

.page-download-center-troubleshooting__grid-title {
    font-size: 1.3em;
    color: #0A2E36;
    margin-bottom: 15px;
}

.page-download-center-troubleshooting__register-cta {
    text-align: center;
    background-color: #E0B34C;
    color: #0A2E36;
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 8px;
}

.page-download-center-troubleshooting__register-cta .page-download-center-troubleshooting__section-title {
    color: #0A2E36;
}

.page-download-center-troubleshooting__register-cta .page-download-center-troubleshooting__text {
    color: #444;
}

.page-download-center-troubleshooting__register-cta .page-download-center-troubleshooting__section-title::after {
    background-color: #0A2E36;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-download-center-troubleshooting__hero-title {
        font-size: 2em;
    }

    .page-download-center-troubleshooting__hero-subtitle {
        font-size: 1em;
    }

    .page-download-center-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-download-center-troubleshooting__faq-question {
        font-size: 1.2em;
    }

    .page-download-center-troubleshooting__image--small {
        max-width: 80%;
    }

    .page-download-center-troubleshooting__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-download-center-troubleshooting__hero {
        padding: 60px 0;
    }

    .page-download-center-troubleshooting__hero-title {
        font-size: 1.6em;
    }

    .page-download-center-troubleshooting__section {
        padding: 40px 0;
    }

    .page-download-center-troubleshooting__faq-item {
        padding: 15px;
    }

    .page-download-center-troubleshooting__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-download-center-troubleshooting__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}