.page-blog-win55-faq {
    background-color: var(--bg-color, #F4F7FB); /* Using custom color */
    color: var(--text-main, #1F2D3D); /* Using custom color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-win55-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-win55-faq__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: var(--main-color, #2F6BFF); /* Primary color for hero background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden; /* To contain the image */
}

.page-blog-win55-faq__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image container */
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-win55-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-win55-faq__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-win55-faq__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-blog-win55-faq__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-blog-win55-faq__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%)); /* Custom button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win55-faq__cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* FAQ Section */
.page-blog-win55-faq__faq-section {
    padding: 60px 0;
    background-color: var(--bg-color, #F4F7FB); /* Custom background color */
}

.page-blog-win55-faq__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-main, #1F2D3D); /* Custom text color */
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-win55-faq__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-win55-faq__faq-item {
    background-color: var(--card-bg, #FFFFFF); /* Custom card background */
    border: 1px solid var(--border-color, #D6E2FF); /* Custom border color */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-win55-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text-main, #1F2D3D); /* Custom text color */
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-blog-win55-faq__faq-question:hover {
    background-color: #f8f8f8;
}

.page-blog-win55-faq__faq-question[aria-expanded="true"] {
    background-color: #eef2fa;
}

.page-blog-win55-faq__faq-question-text {
    flex-grow: 1;
    margin-right: 15px;
}

.page-blog-win55-faq__faq-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--main-color, #2F6BFF); /* Primary color for icon */
}

.page-blog-win55-faq__faq-question[aria-expanded="true"] .page-blog-win55-faq__faq-icon {
    transform: rotate(45deg);
}

.page-blog-win55-faq__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fcfdff;
}

.page-blog-win55-faq__faq-answer p {
    padding-bottom: 20px;
    color: var(--text-main, #1F2D3D); /* Custom text color */
    font-size: 1em;
}

.page-blog-win55-faq__faq-answer.page-blog-win55-faq__faq-answer--expanded {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: 20px;
}

.page-blog-win55-faq__inline-link {
    color: var(--main-color, #2F6BFF); /* Primary color for inline links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-blog-win55-faq__inline-link:hover {
    color: var(--aux-color, #6FA3FF); /* Auxiliary color on hover */
    text-decoration: underline;
}

.page-blog-win55-faq__faq-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-blog-win55-faq__contact-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--aux-color, #6FA3FF); /* Auxiliary color for contact CTA */
    border-radius: 10px;
    color: #FFFFFF;
}

.page-blog-win55-faq__contact-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-blog-win55-faq__contact-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: #FFFFFF;
    color: var(--main-color, #2F6BFF); /* Primary color for contact button text */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win55-faq__contact-button:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

/* Outro Section */
.page-blog-win55-faq__outro-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--card-bg, #FFFFFF); /* Custom card background */
}

.page-blog-win55-faq__outro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-main, #1F2D3D); /* Custom text color */
}

.page-blog-win55-faq__outro-cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%)); /* Custom button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.page-blog-win55-faq__outro-cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-blog-win55-faq__outro-image {
    width: 100%;
    max-width: 800px; /* Constrain max width for outro image */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-blog-win55-faq__hero-section {
        padding-bottom: 30px;
    }

    .page-blog-win55-faq__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-win55-faq__description {
        font-size: 1em;
    }

    .page-blog-win55-faq__section-title {
        font-size: 2em;
    }

    .page-blog-win55-faq__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-win55-faq__faq-answer p {
        padding-bottom: 15px;
    }

    .page-blog-win55-faq__contact-cta {
        padding: 20px;
    }

    .page-blog-win55-faq__contact-text {
        font-size: 1em;
    }

    .page-blog-win55-faq__hero-image,
    .page-blog-win55-faq__faq-image,
    .page-blog-win55-faq__outro-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog-win55-faq__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }

    .page-blog-win55-faq__section-title {
        font-size: 1.8em;
    }

    .page-blog-win55-faq__cta-button,
    .page-blog-win55-faq__contact-button,
    .page-blog-win55-faq__outro-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}