/* style/download-install-troubleshooting.css */
.page-download-install-troubleshooting {
    font-family: Arial, sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #1A2A3A; /* Auxiliary dark blue background */
}

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

.page-download-install-troubleshooting__hero {
    background: linear-gradient(135deg, #FFD700 0%, #1A2A3A 100%);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1A2A3A; /* Dark text on gradient background */
}

.page-download-install-troubleshooting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #1A2A3A; /* Dark blue for title */
}

.page-download-install-troubleshooting__hero-title .highlight {
    color: #8B4513; /* Darker brown/gold for contrast on gold background */
}

.page-download-install-troubleshooting__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #333;
}

.page-download-install-troubleshooting__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-download-install-troubleshooting__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-download-install-troubleshooting__btn--primary {
    background-color: #1A2A3A; /* Auxiliary color for primary button */
    color: #FFD700; /* Main color for text */
}

.page-download-install-troubleshooting__btn--primary:hover {
    background-color: #0F1A25;
    transform: translateY(-2px);
}

.page-download-install-troubleshooting__btn--secondary {
    background-color: transparent;
    color: #1A2A3A; /* Dark text on transparent background */
    border: 2px solid #1A2A3A;
}

.page-download-install-troubleshooting__btn--secondary:hover {
    background-color: rgba(26, 42, 58, 0.1);
    transform: translateY(-2px);
}

.page-download-install-troubleshooting__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-download-install-troubleshooting__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-install-troubleshooting__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Main gold color for titles */
    font-weight: bold;
}

.page-download-install-troubleshooting__section-description {
    font-size: 1.1em;
    color: #B0C4DE; /* Light steel blue for description */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-install-troubleshooting__common-issues {
    background-color: #1A2A3A;
}

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

.page-download-install-troubleshooting__issue-card {
    background-color: #2A3B4D; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-download-install-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-download-install-troubleshooting__issue-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-download-install-troubleshooting__issue-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-install-troubleshooting__issue-text {
    font-size: 1em;
    color: #E0E0E0;
    line-height: 1.6;
    flex-grow: 1;
}

.page-download-install-troubleshooting__read-more {
    display: inline-block;
    margin-top: 20px;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
}

.page-download-install-troubleshooting__read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.page-download-install-troubleshooting__read-more:hover::after {
    transform: scaleX(1);
}

.page-download-install-troubleshooting__detail-section {
    background-color: #1A2A3A;
    text-align: left;
}

.page-download-install-troubleshooting__section--alt-bg {
    background-color: #0F1A25; /* Even darker background for alternating sections */
}

.page-download-install-troubleshooting__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-install-troubleshooting__detail-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-download-install-troubleshooting__detail-section p strong {
    color: #FFD700;
}

.page-download-install-troubleshooting__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.page-download-install-troubleshooting__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-download-install-troubleshooting__text-content {
    flex: 1;
}

.page-download-install-troubleshooting__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-download-install-troubleshooting__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-install-troubleshooting__action-text {
    margin-top: 30px;
    font-size: 1.1em;
    color: #B0C4DE;
}

.page-download-install-troubleshooting__action-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-download-install-troubleshooting__action-text a:hover {
    text-decoration: underline;
}

.page-download-install-troubleshooting__btn--inline {
    padding: 10px 20px;
    font-size: 1em;
    margin-left: 10px;
}

.page-download-install-troubleshooting__cta-section {
    background-color: #FFD700; /* Main gold color for CTA section */
    padding: 80px 0;
    text-align: center;
    color: #1A2A3A; /* Dark text on gold background */
}

.page-download-install-troubleshooting__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2A3A;
    font-weight: bold;
}

.page-download-install-troubleshooting__cta-title .highlight {
    color: #8B4513; /* Darker brown/gold for contrast */
}

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

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

.page-download-install-troubleshooting__cta-buttons .page-download-install-troubleshooting__btn--primary {
    background-color: #1A2A3A;
    color: #FFD700;
}

.page-download-install-troubleshooting__cta-buttons .page-download-install-troubleshooting__btn--primary:hover {
    background-color: #0F1A25;
}

.page-download-install-troubleshooting__cta-buttons .page-download-install-troubleshooting__btn--secondary {
    background-color: transparent;
    border: 2px solid #1A2A3A;
    color: #1A2A3A;
}

.page-download-install-troubleshooting__cta-buttons .page-download-install-troubleshooting__btn--secondary:hover {
    background-color: rgba(26, 42, 58, 0.1);
}

.page-download-install-troubleshooting__faq-section {
    background-color: #1A2A3A;
    padding-bottom: 80px;
}

.page-download-install-troubleshooting__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-install-troubleshooting__faq-item {
    background-color: #2A3B4D;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download-install-troubleshooting__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2A3B4D;
    border-bottom: 1px solid #3A4C5E;
    transition: background-color 0.3s ease;
}

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

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

.page-download-install-troubleshooting__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-download-install-troubleshooting__faq-answer.active {
    max-height: 300px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-download-install-troubleshooting__faq-answer p {
    color: #E0E0E0;
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-install-troubleshooting__hero-title {
        font-size: 2.5em;
    }
    .page-download-install-troubleshooting__section-title {
        font-size: 2em;
    }
    .page-download-install-troubleshooting__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-download-install-troubleshooting__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-download-install-troubleshooting__image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-download-install-troubleshooting__hero {
        padding: 60px 0 30px;
    }
    .page-download-install-troubleshooting__hero-title {
        font-size: 2em;
    }
    .page-download-install-troubleshooting__hero-subtitle {
        font-size: 1em;
    }
    .page-download-install-troubleshooting__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-install-troubleshooting__btn {
        padding: 12px 25px;
        font-size: 1em;
        width: 80%;
        max-width: 300px;
    }
    .page-download-install-troubleshooting__section {
        padding: 40px 0;
    }
    .page-download-install-troubleshooting__section-title {
        font-size: 1.8em;
    }
    .page-download-install-troubleshooting__grid {
        grid-template-columns: 1fr;
    }
    .page-download-install-troubleshooting__issue-card {
        padding: 25px;
    }
    .page-download-install-troubleshooting__sub-title {
        font-size: 1.5em;
    }
    .page-download-install-troubleshooting__detail-section p {
        font-size: 0.95em;
    }
    .page-download-install-troubleshooting__cta-title {
        font-size: 2.2em;
    }
    .page-download-install-troubleshooting__cta-description {
        font-size: 1em;
    }
    .page-download-install-troubleshooting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-install-troubleshooting__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-download-install-troubleshooting__faq-answer.active {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-download-install-troubleshooting__hero-title {
        font-size: 1.8em;
    }
    .page-download-install-troubleshooting__hero-image {
        max-width: 95%;
    }
    .page-download-install-troubleshooting__section-title {
        font-size: 1.6em;
    }
    .page-download-install-troubleshooting__sub-title {
        font-size: 1.3em;
    }
    .page-download-install-troubleshooting__cta-title {
        font-size: 1.8em;
    }
}