/* style/blog-35win-no-hu-guide.css */

/* Base styles for the page content */
.page-blog-35win-no-hu-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: transparent; /* Body background is handled by shared.css var(--bg-color) */
}

/* Hero Section */
.page-blog-35win-no-hu-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden; /* Ensure nothing spills out */
}

.page-blog-35win-no-hu-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-35win-no-hu-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-35win-no-hu-guide__hero-content {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-blog-35win-no-hu-guide__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-35win-no-hu-guide__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-35win-no-hu-guide__section {
    padding: 60px 0;
    position: relative;
    background-color: transparent; /* Inherit body background */
}

.page-blog-35win-no-hu-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-35win-no-hu-guide__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-35win-no-hu-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-35win-no-hu-guide p {
    margin-bottom: 1em;
    color: #F2FFF6; /* Text Main */
}

.page-blog-35win-no-hu-guide strong {
    color: #F2C14E; /* Gold */
}

/* Lists */
.page-blog-35win-no-hu-guide__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-35win-no-hu-guide__list-item {
    background-color: #11271B; /* Card BG */
    border-left: 4px solid #11A84E; /* Main Color */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-35win-no-hu-guide__list-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-35win-no-hu-guide__sub-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-35win-no-hu-guide__sub-list-item {
    margin-bottom: 5px;
}

/* Call to Action Buttons */
.page-blog-35win-no-hu-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow of buttons */
}

.page-blog-35win-no-hu-guide__btn-primary,
.page-blog-35win-no-hu-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    text-align: center;
}

.page-blog-35win-no-hu-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-35win-no-hu-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-blog-35win-no-hu-guide__btn-secondary {
    background: transparent;
    color: #11A84E; /* Main Color */
    border: 2px solid #11A84E; /* Main Color */
}

.page-blog-35win-no-hu-guide__btn-secondary:hover {
    background: #11A84E; /* Main Color */
    color: #ffffff;
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

/* FAQ Section */
.page-blog-35win-no-hu-guide__faq-list {
    margin-top: 30px;
}

.page-blog-35win-no-hu-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-35win-no-hu-guide__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    color: #F2FFF6; /* Text Main */
    position: relative;
}

.page-blog-35win-no-hu-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-35win-no-hu-guide__faq-question {
    display: flex; /* For toggle icon */
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-blog-35win-no-hu-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-35win-no-hu-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #11A84E; /* Main Color */
    transition: transform 0.3s ease;
}

.page-blog-35win-no-hu-guide__faq-item[open] .page-blog-35win-no-hu-guide__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-blog-35win-no-hu-guide__faq-answer {
    padding: 0 20px 20px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.05em;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-35win-no-hu-guide__hero-content {
        max-width: 768px;
    }

    .page-blog-35win-no-hu-guide__main-title {
        font-size: clamp(1.8em, 4.5vw, 3em);
    }

    .page-blog-35win-no-hu-guide__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog-35win-no-hu-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Hero Section */
    .page-blog-35win-no-hu-guide__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-35win-no-hu-guide__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }

    .page-blog-35win-no-hu-guide__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-blog-35win-no-hu-guide__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    /* General Section & Container */
    .page-blog-35win-no-hu-guide__section {
        padding: 40px 0;
    }

    .page-blog-35win-no-hu-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-35win-no-hu-guide__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    /* Images responsiveness */
    .page-blog-35win-no-hu-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Image containers */
    .page-blog-35win-no-hu-guide__hero-image-wrapper,
    .page-blog-35win-no-hu-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Buttons responsiveness */
    .page-blog-35win-no-hu-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-35win-no-hu-guide__btn-primary,
    .page-blog-35win-no-hu-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* FAQ Section */
    .page-blog-35win-no-hu-guide__faq-item summary {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-blog-35win-no-hu-guide__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.95em;
    }

    .page-blog-35win-no-hu-guide__list-item {
        padding: 15px;
    }

    .page-blog-35win-no-hu-guide__list-title {
        font-size: 1.2em;
    }
}