/* style/resources-online-88-advantages.css */

/* --- General Styles --- */
.page-resources-online-88-advantages {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Body background from shared.css */
}

.page-resources-online-88-advantages p,
.page-resources-online-88-advantages li,
.page-resources-online-88-advantages h1,
.page-resources-online-88-advantages h2,
.page-resources-online-88-advantages h3,
.page-resources-online-88-advantages h4 {
    color: #ffffff; /* Light text for dark body background */
}

.page-resources-online-88-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-online-88-advantages__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-online-88-advantages__subsection-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-online-88-advantages__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly off-white for better readability on dark background */
}

/* --- Buttons --- */
.page-resources-online-88-advantages__btn-primary,
.page-resources-online-88-advantages__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%; /* Ensure buttons are responsive */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-resources-online-88-advantages__btn-primary {
    background-color: #017439; /* Main brand color */
    color: #ffffff;
    border: 2px solid #017439;
}

.page-resources-online-88-advantages__btn-primary:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

.page-resources-online-88-advantages__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand color for text */
    border: 2px solid #017439;
}

.page-resources-online-88-advantages__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2e;
    border-color: #005f2e;
}

/* Specific button colors for Login/Register */
.page-resources-online-88-advantages__btn-register {
    background-color: #C30808; /* Custom register color */
    color: #FFFF00; /* Custom register font color */
    border-color: #C30808;
}
.page-resources-online-88-advantages__btn-register:hover {
    background-color: #a00606;
    border-color: #a00606;
}

/* --- Hero Section --- */
.page-resources-online-88-advantages__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden; /* Prevent image overflow */
    box-sizing: border-box;
    background-color: #0d0d0d; /* Dark background for hero */
}

.page-resources-online-88-advantages__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4; /* Slightly transparent to make text stand out */
}

.page-resources-online-88-advantages__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-resources-online-88-advantages__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-resources-online-88-advantages__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-online-88-advantages__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}


/* --- Introduction Section --- */
.page-resources-online-88-advantages__introduction-section {
    padding: 60px 0;
    background-color: var(--dark-bg-1); /* Consistent with body background */
}


/* --- Advantages Section --- */
.page-resources-online-88-advantages__advantages-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-resources-online-88-advantages__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-online-88-advantages__feature-card {
    background-color: #2a2a2a; /* Dark card background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #f0f0f0; /* Light text for dark card */
}

.page-resources-online-88-advantages__feature-card:hover {
    transform: translateY(-5px);
}

.page-resources-online-88-advantages__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min size for images */
    min-height: 200px; /* Min size for images */
}

.page-resources-online-88-advantages__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-online-88-advantages__card-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Make description take available space */
    color: #f0f0f0;
}

.page-resources-online-88-advantages__list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-resources-online-88-advantages__list-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-resources-online-88-advantages__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #017439;
    font-size: 1.1em;
    line-height: 1;
}

/* --- Join Us Section --- */
.page-resources-online-88-advantages__join-us-section {
    padding: 60px 0;
    background-color: var(--dark-bg-1);
}

.page-resources-online-88-advantages__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-online-88-advantages__step-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-online-88-advantages__step-title {
    font-size: 1.6em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-online-88-advantages__step-description {
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
    color: #f0f0f0;
}


/* --- FAQ Section --- */
.page-resources-online-88-advantages__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-resources-online-88-advantages__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-online-88-advantages__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-resources-online-88-advantages__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #017439; /* Brand color for question background */
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-online-88-advantages__faq-question:hover {
    background-color: #005f2e;
}

.page-resources-online-88-advantages__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-resources-online-88-advantages__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-resources-online-88-advantages__faq-item.active .page-resources-online-88-advantages__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-online-88-advantages__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0; /* Light text for answer */
}

.page-resources-online-88-advantages__faq-item.active .page-resources-online-88-advantages__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-online-88-advantages__faq-answer p {
    margin: 0;
    color: #f0f0f0;
}

/* --- CTA Section --- */
.page-resources-online-88-advantages__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--dark-bg-1);
}

.page-resources-online-88-advantages__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-resources-online-88-advantages__hero-title {
        font-size: 3em;
    }
    .page-resources-online-88-advantages__hero-description {
        font-size: 1.2em;
    }
    .page-resources-online-88-advantages__section-title {
        font-size: 2em;
    }
    .page-resources-online-88-advantages__subsection-title {
        font-size: 1.6em;
    }
    .page-resources-online-88-advantages__card-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-resources-online-88-advantages {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-online-88-advantages__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-resources-online-88-advantages__hero-title {
        font-size: 2.2em;
    }
    .page-resources-online-88-advantages__hero-description {
        font-size: 1em;
    }
    .page-resources-online-88-advantages__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-online-88-advantages__btn-primary,
    .page-resources-online-88-advantages__btn-secondary,
    .page-resources-online-88-advantages a[class*="button"],
    .page-resources-online-88-advantages a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-online-88-advantages__cta-buttons,
    .page-resources-online-88-advantages__button-group,
    .page-resources-online-88-advantages__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-resources-online-88-advantages__section-title {
        font-size: 1.8em;
    }
    .page-resources-online-88-advantages__subsection-title {
        font-size: 1.4em;
    }
    .page-resources-online-88-advantages__feature-grid,
    .page-resources-online-88-advantages__step-by-step {
        grid-template-columns: 1fr;
    }
    .page-resources-online-88-advantages__feature-card,
    .page-resources-online-88-advantages__step-card {
        padding: 20px;
    }
    .page-resources-online-88-advantages__card-image {
        height: auto; /* Allow height to adjust */
    }
    .page-resources-online-88-advantages__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-resources-online-88-advantages__faq-question h3 {
        font-size: 1.1em;
    }
    .page-resources-online-88-advantages__faq-answer {
        padding: 0 20px;
    }
    .page-resources-online-88-advantages__faq-item.active .page-resources-online-88-advantages__faq-answer {
        padding: 15px 20px;
    }

    /* Images responsive rules */
    .page-resources-online-88-advantages img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-resources-online-88-advantages__section,
    .page-resources-online-88-advantages__card,
    .page-resources-online-88-advantages__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Ensure content area images are not too small */
    .page-resources-online-88-advantages__feature-card .page-resources-online-88-advantages__card-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
}