/* style/download-center-troubleshooting.css */

.page-download-center-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-download-center-troubleshooting__hero-section {
    background: linear-gradient(135deg, #1A0D3B 0%, #3a1e70 100%); /* Darker gradient for hero */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-troubleshooting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Accent color for title */
}

.page-download-center-troubleshooting__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-download-center-troubleshooting__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA */
    color: #1A0D3B; /* Primary color for text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-troubleshooting__hero-cta:hover {
    background-color: #e6c200; /* Slightly darker yellow on hover */
    transform: translateY(-3px);
}

.page-download-center-troubleshooting__section-title {
    font-size: 2.5em;
    color: #1A0D3B; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-download-center-troubleshooting__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    line-height: 1.6;
    color: #555;
}

.page-download-center-troubleshooting__intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-download-center-troubleshooting__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-download-center-troubleshooting__text-content {
    flex: 1;
    min-width: 300px;
}

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

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

.page-download-center-troubleshooting__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-download-center-troubleshooting__btn-secondary {
    display: inline-block;
    background-color: #1A0D3B; /* Primary color for secondary button */
    color: #FFD700; /* Accent color for text */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.page-download-center-troubleshooting__btn-secondary:hover {
    background-color: #2e1a5e; /* Slightly lighter primary on hover */
    color: #FFD700;
}

.page-download-center-troubleshooting__issues-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

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

.page-download-center-troubleshooting__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-troubleshooting__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-troubleshooting__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for icons */
    background-color: #1A0D3B; /* Primary color background for icons */
    border-radius: 50%;
    padding: 10px;
}

.page-download-center-troubleshooting__grid-item h3 {
    font-size: 1.4em;
    color: #1A0D3B; /* Primary color for item titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-troubleshooting__grid-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.page-download-center-troubleshooting__solutions-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-download-center-troubleshooting__solution-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-troubleshooting__solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.page-download-center-troubleshooting__solution-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    color: #1A0D3B; /* Primary color for solution icons */
    background-color: #FFD700; /* Accent color background for icons */
    border-radius: 50%;
    padding: 8px;
}

.page-download-center-troubleshooting__solution-item h3 {
    font-size: 1.6em;
    color: #1A0D3B; /* Primary color for solution titles */
    font-weight: bold;
}

.page-download-center-troubleshooting__solution-item p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.page-download-center-troubleshooting__solution-item ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-download-center-troubleshooting__solution-item ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-download-center-troubleshooting__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Accent color for primary button */
    color: #1A0D3B; /* Primary color for text */
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

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

.page-download-center-troubleshooting__solution-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-troubleshooting__faq-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

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

.page-download-center-troubleshooting__faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-troubleshooting__faq-item h3 {
    font-size: 1.35em;
    color: #1A0D3B; /* Primary color for FAQ questions */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-troubleshooting__faq-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.page-download-center-troubleshooting__cta-section {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Accent color gradient */
    color: #1A0D3B; /* Primary color for text */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-troubleshooting__cta-section .page-download-center-troubleshooting__section-title {
    color: #1A0D3B; /* Primary color for CTA title */
}

.page-download-center-troubleshooting__cta-section .page-download-center-troubleshooting__section-title::after {
    background-color: #1A0D3B; /* Primary color underline */
}

.page-download-center-troubleshooting__cta-section .page-download-center-troubleshooting__section-description {
    color: #333;
}

.page-download-center-troubleshooting__cta-btn {
    display: inline-block;
    background-color: #1A0D3B; /* Primary color for CTA button */
    color: #FFD700; /* Accent color for text */
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-download-center-troubleshooting__cta-btn:hover {
    background-color: #2e1a5e; /* Slightly lighter primary on hover */
    transform: translateY(-5px);
}

.page-download-center-troubleshooting__cta-image {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Text highlight for keywords */
.page-download-center-troubleshooting .text-highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-download-center-troubleshooting__hero-section .text-highlight {
    color: #FFD700; /* Ensure highlight is visible on dark hero background */
}

.page-download-center-troubleshooting__intro-section .text-highlight,
.page-download-center-troubleshooting__issues-section .text-highlight,
.page-download-center-troubleshooting__solutions-section .text-highlight,
.page-download-center-troubleshooting__faq-section .text-highlight {
    color: #1A0D3B; /* Ensure highlight is visible on light backgrounds */
}

.page-download-center-troubleshooting__cta-section .text-highlight {
    color: #1A0D3B; /* Ensure highlight is visible on yellow CTA background */
}


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

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

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

    .page-download-center-troubleshooting__intro-section .page-download-center-troubleshooting__content-wrapper {
        flex-direction: column;
    }

    .page-download-center-troubleshooting__image-content {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-download-center-troubleshooting__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 768px) {
    .page-download-center-troubleshooting__hero-section {
        padding: 80px 0;
    }

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

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

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

    .page-download-center-troubleshooting__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }

    .page-download-center-troubleshooting__grid-item h3 {
        font-size: 1.2em;
    }

    .page-download-center-troubleshooting__solution-item h3 {
        font-size: 1.4em;
    }

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

    .page-download-center-troubleshooting__cta-btn {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .page-download-center-troubleshooting__icon, .page-download-center-troubleshooting__solution-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .page-download-center-troubleshooting__hero-section {
        padding: 60px 0;
    }
    .page-download-center-troubleshooting__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-troubleshooting__hero-subtitle {
        font-size: 0.9em;
    }
    .page-download-center-troubleshooting__section-title {
        font-size: 1.6em;
    }
    .page-download-center-troubleshooting__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-download-center-troubleshooting__hero-cta, .page-download-center-troubleshooting__btn-secondary, .page-download-center-troubleshooting__btn-primary, .page-download-center-troubleshooting__cta-btn {
        font-size: 0.95em;
        padding: 12px 25px;
    }
    .page-download-center-troubleshooting__grid-item, .page-download-center-troubleshooting__solution-item, .page-download-center-troubleshooting__faq-item {
        padding: 20px;
    }
    .page-download-center-troubleshooting__icon, .page-download-center-troubleshooting__solution-icon {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
}