/* style/resources-sunwin-platform-guide.css */
.page-resources-sunwin-platform-guide {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    background-color: #0A1931; /* Main background color */
}

.page-resources-sunwin-platform-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-sunwin-platform-guide__hero-section {
    background: linear-gradient(135deg, #0A1931, #2a416b); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFC107; /* Accent border */
}

.page-resources-sunwin-platform-guide__hero-title {
    font-size: 3.5em;
    color: #FFC107; /* Accent color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sunwin-platform-guide__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-sunwin-platform-guide__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-resources-sunwin-platform-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-sunwin-platform-guide__btn--primary {
    background-color: #FFC107; /* Accent color */
    color: #0A1931; /* Dark text on accent background */
}

.page-resources-sunwin-platform-guide__btn--primary:hover {
    background-color: #e6b000; /* Slightly darker accent */
    transform: translateY(-3px);
}

.page-resources-sunwin-platform-guide__btn--secondary {
    background-color: transparent;
    color: #FFC107; /* Accent text */
    border: 2px solid #FFC107;
}

.page-resources-sunwin-platform-guide__btn--secondary:hover {
    background-color: #FFC107;
    color: #0A1931;
    transform: translateY(-3px);
}

.page-resources-sunwin-platform-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-resources-sunwin-platform-guide__btn--cta {
    margin-top: 30px;
}

.page-resources-sunwin-platform-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-sunwin-platform-guide__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    filter: brightness(0.8);
    z-index: 0;
}

.page-resources-sunwin-platform-guide__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-resources-sunwin-platform-guide__section--alt {
    background-color: #1a2a47; /* Slightly lighter dark blue */
}

.page-resources-sunwin-platform-guide__section-title {
    font-size: 2.5em;
    color: #FFC107; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-sunwin-platform-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-resources-sunwin-platform-guide__sub-title {
    font-size: 1.8em;
    color: #FFC107; /* Accent color for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}

.page-resources-sunwin-platform-guide__text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-resources-sunwin-platform-guide__text--highlight {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #FFC107;
    margin-top: 30px;
    font-weight: bold;
    color: #FFC107;
}

.page-resources-sunwin-platform-guide__numbered-list,
.page-resources-sunwin-platform-guide__bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-sunwin-platform-guide__numbered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    counter-increment: custom-counter;
    position: relative;
    padding-left: 40px;
}

.page-resources-sunwin-platform-guide__numbered-list li::before {
    content: counter(custom-counter) ". ";
    color: #FFC107;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-resources-sunwin-platform-guide__bullet-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.page-resources-sunwin-platform-guide__bullet-list li::before {
    content: '•';
    color: #FFC107;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-resources-sunwin-platform-guide__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-sunwin-platform-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sunwin-platform-guide__feature-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-sunwin-platform-guide__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-sunwin-platform-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFC107);
}

.page-resources-sunwin-platform-guide__feature-title {
    font-size: 1.5em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-resources-sunwin-platform-guide__feature-description {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
}

.page-resources-sunwin-platform-guide__section--faq .page-resources-sunwin-platform-guide__faq-item {
    background-color: #1a2a47;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-sunwin-platform-guide__faq-question {
    font-size: 1.3em;
    color: #FFC107;
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #2a416b;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.page-resources-sunwin-platform-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-sunwin-platform-guide__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-sunwin-platform-guide__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.05em;
    color: #e0e0e0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-sunwin-platform-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-resources-sunwin-platform-guide__section--cta-bottom {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #0A1931, #2a416b);
    border-top: 5px solid #FFC107;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-sunwin-platform-guide__hero-title {
        font-size: 2.5em;
    }

    .page-resources-sunwin-platform-guide__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-sunwin-platform-guide__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-sunwin-platform-guide__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-sunwin-platform-guide__section-title {
        font-size: 2em;
    }

    .page-resources-sunwin-platform-guide__sub-title {
        font-size: 1.5em;
    }

    .page-resources-sunwin-platform-guide__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-sunwin-platform-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-sunwin-platform-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-sunwin-platform-guide__btn {
        width: 90%;
    }

    .page-resources-sunwin-platform-guide__section {
        padding: 40px 0;
    }

    .page-resources-sunwin-platform-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-sunwin-platform-guide__sub-title {
        font-size: 1.3em;
    }

    .page-resources-sunwin-platform-guide__text,
    .page-resources-sunwin-platform-guide__numbered-list li,
    .page-resources-sunwin-platform-guide__bullet-list li {
        font-size: 0.95em;
    }
}