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

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

.page-download-center-troubleshooting__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-troubleshooting__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-download-center-troubleshooting__hero-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting__hero-button:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-download-center-troubleshooting__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-download-center-troubleshooting__section:nth-of-type(even) {
    background-color: #eef2f7; /* Light grey-blue for alternating sections */
}

.page-download-center-troubleshooting__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-download-center-troubleshooting__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-download-center-troubleshooting__issue-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-download-center-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
}

.page-download-center-troubleshooting__issue-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-troubleshooting__issue-text {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-download-center-troubleshooting__solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-download-center-troubleshooting__solution-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-download-center-troubleshooting__solution-list li::before {
    content: '•';
    color: #FFCC00; /* Gold bullet points */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-download-center-troubleshooting__issue-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-download-center-troubleshooting__link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center-troubleshooting__link:hover {
    text-decoration: underline;
    color: #FFCC00;
}

.page-download-center-troubleshooting__official-download .page-download-center-troubleshooting__solution-list--large-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-download-center-troubleshooting__official-download .page-download-center-troubleshooting__solution-list--large-icons li {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
    padding: 25px;
    text-align: center;
    flex: 1 1 45%; /* Allow two items per row on larger screens */
    max-width: 48%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-download-center-troubleshooting__icon {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 15px;
    display: block;
}

.page-download-center-troubleshooting__official-download .page-download-center-troubleshooting__solution-list--large-icons li strong {
    color: #003366;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-download-center-troubleshooting__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    margin-top: 30px;
    text-align: center;
    border: 2px solid transparent;
}

.page-download-center-troubleshooting__button--primary {
    background-color: #003366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-download-center-troubleshooting__button--secondary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting__button--secondary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-download-center-troubleshooting__download-image,
.page-download-center-troubleshooting__support-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.page-download-center-troubleshooting__contact-support .page-download-center-troubleshooting__contact-text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.page-download-center-troubleshooting__faq .page-download-center-troubleshooting__accordion {
    max-width: 900px;
    margin: 40px auto;
}

.page-download-center-troubleshooting__accordion-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.07);
    overflow: hidden;
}

.page-download-center-troubleshooting__accordion-header {
    width: 100%;
    background-color: #003366;
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-download-center-troubleshooting__accordion-header:hover {
    background-color: #004488;
}

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

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

.page-download-center-troubleshooting__accordion-content {
    padding: 0 25px;
    background-color: #f0f4f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-download-center-troubleshooting__accordion-content.active {
    max-height: 500px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.page-download-center-troubleshooting__accordion-content p {
    margin-bottom: 10px;
    color: #333;
}

.page-download-center-troubleshooting__cta-banner {
    background: linear-gradient(90deg, #003366 0%, #004488 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-troubleshooting__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-download-center-troubleshooting__cta-title {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-troubleshooting__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-download-center-troubleshooting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-download-center-troubleshooting__button--outline {
    background-color: transparent;
    border: 2px solid #FFCC00;
    color: #FFCC00;
}

.page-download-center-troubleshooting__button--outline:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

.page-download-center-troubleshooting__cta-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

    .page-download-center-troubleshooting__hero-subtitle,
    .page-download-center-troubleshooting__section-description,
    .page-download-center-troubleshooting__contact-text,
    .page-download-center-troubleshooting__cta-description {
        font-size: 1em;
    }

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

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

    .page-download-center-troubleshooting__official-download .page-download-center-troubleshooting__solution-list--large-icons li {
        max-width: 100%;
    }

    .page-download-center-troubleshooting__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-download-center-troubleshooting__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-download-center-troubleshooting__hero-title {
        font-size: 1.8em;
    }

    .page-download-center-troubleshooting__hero-button,
    .page-download-center-troubleshooting__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-download-center-troubleshooting__section,
    .page-download-center-troubleshooting__hero,
    .page-download-center-troubleshooting__cta-banner {
        padding: 40px 0;
    }

    .page-download-center-troubleshooting__issue-card {
        padding: 20px;
    }

    .page-download-center-troubleshooting__issue-title {
        font-size: 1.4em;
    }

    .page-download-center-troubleshooting__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-download-center-troubleshooting__accordion-content.active {
        padding: 15px 20px;
    }
}