/* style/download-center-common-download-issues.css */

.page-download-center-common-download-issues {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-download-center-common-download-issues__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4c 100%); /* Dark gradient for hero */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 5px solid #FFD700;
}

.page-download-center-common-download-issues__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-download-center-common-download-issues__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-download-center-common-download-issues__btn--primary {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on bright yellow */
}

.page-download-center-common-download-issues__btn--primary:hover {
    background-color: #e6c200; /* Darker yellow on hover */
    transform: translateY(-2px);
}

.page-download-center-common-download-issues__btn--secondary {
    background-color: #2D3748; /* Darker shade of primary */
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-download-center-common-download-issues__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-download-center-common-download-issues__content-section,
.page-download-center-common-download-issues__guide-section,
.page-download-center-common-download-issues__issues-section,
.page-download-center-common-download-issues__tips-section,
.page-download-center-common-download-issues__faq-section,
.page-download-center-common-download-issues__cta-bottom {
    padding: 60px 0;
}

.page-download-center-common-download-issues__content-section {
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-download-center-common-download-issues__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-common-download-issues__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-download-center-common-download-issues__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-download-center-common-download-issues__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3f4c;
}

.page-download-center-common-download-issues__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px #FFD700);
}

.page-download-center-common-download-issues__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-download-center-common-download-issues__feature-description {
    color: #e5dfd3;
}

.page-download-center-common-download-issues__guide-section {
    background-color: #1A202C;
}

.page-download-center-common-download-issues__guide-step {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-download-center-common-download-issues__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 1px dashed #4a5568;
    padding-bottom: 10px;
}

.page-download-center-common-download-issues__list {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-download-center-common-download-issues__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-download-center-common-download-issues__list a {
    color: #FFD700;
    text-decoration: none;
}

.page-download-center-common-download-issues__list a:hover {
    text-decoration: underline;
}

.page-download-center-common-download-issues__image-wrapper {
    text-align: center;
    margin-top: 30px;
}

.page-download-center-common-download-issues__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-download-center-common-download-issues__issues-section {
    background-color: #2D3748;
}

.page-download-center-common-download-issues__faq-item {
    background-color: #1A202C;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3f4c;
}

.page-download-center-common-download-issues__faq-item .page-download-center-common-download-issues__sub-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.page-download-center-common-download-issues__image-wrapper--large {
    margin-top: 50px;
}

.page-download-center-common-download-issues__tips-section {
    background-color: #1A202C;
    text-align: center;
}

.page-download-center-common-download-issues__list--tips {
    list-style-type: disc;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-download-center-common-download-issues__list--tips li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e5dfd3;
}

.page-download-center-common-download-issues__faq-section--accordion {
    background-color: #2D3748;
}

.page-download-center-common-download-issues__accordion-item {
    margin-bottom: 10px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.page-download-center-common-download-issues__accordion-header.active {
    background-color: #3a3f4c;
}

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

.page-download-center-common-download-issues__accordion-content {
    padding: 0 25px;
    background-color: #262f3d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #e5dfd3;
}

.page-download-center-common-download-issues__accordion-content p {
    padding: 15px 0;
    margin: 0;
}

.page-download-center-common-download-issues__cta-bottom {
    background-color: #1A202C;
    text-align: center;
    padding: 80px 20px;
    border-top: 5px solid #FFD700;
}

.page-download-center-common-download-issues__cta-bottom .page-download-center-common-download-issues__heading {
    margin-bottom: 20px;
}

.page-download-center-common-download-issues__cta-bottom .page-download-center-common-download-issues__text {
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

    .page-download-center-common-download-issues__subtitle {
        font-size: 1.1em;
    }

    .page-download-center-common-download-issues__heading {
        font-size: 2em;
    }

    .page-download-center-common-download-issues__sub-heading {
        font-size: 1.4em;
    }

    .page-download-center-common-download-issues__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-download-center-common-download-issues__list {
        margin-left: 20px;
    }

    .page-download-center-common-download-issues__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-download-center-common-download-issues__title {
        font-size: 2em;
    }

    .page-download-center-common-download-issues__subtitle {
        font-size: 1em;
    }

    .page-download-center-common-download-issues__heading {
        font-size: 1.8em;
    }

    .page-download-center-common-download-issues__sub-heading {
        font-size: 1.3em;
    }

    .page-download-center-common-download-issues__hero-section,
    .page-download-center-common-download-issues__content-section,
    .page-download-center-common-download-issues__guide-section,
    .page-download-center-common-download-issues__issues-section,
    .page-download-center-common-download-issues__tips-section,
    .page-download-center-common-download-issues__faq-section,
    .page-download-center-common-download-issues__cta-bottom {
        padding: 40px 0;
    }

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

    .page-download-center-common-download-issues__list,
    .page-download-center-common-download-issues__text {
        font-size: 0.95em;
    }
}