.page-resources-platform-advantages {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--background-color, #f0f2f5);
}

/* Hero Section */
.page-resources-platform-advantages__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background-color: #017439; /* Brand primary color for hero background */
    color: #FFFFFF;
    overflow: hidden;
}

.page-resources-platform-advantages__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-resources-platform-advantages__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for title on dark background */
    line-height: 1.2;
    font-weight: bold;
}

.page-resources-platform-advantages__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.page-resources-platform-advantages__btn-register,
.page-resources-platform-advantages__btn-login {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-platform-advantages__btn-register {
    background-color: #C30808; /* Custom register button color */
    color: #FFFF00; /* Custom register button text color */
    border: 2px solid #C30808;
}

.page-resources-platform-advantages__btn-register:hover {
    background-color: #a00606;
    transform: translateY(-3px);
}

.page-resources-platform-advantages__btn-login {
    background-color: #C30808; /* Custom login button color */
    color: #FFFF00; /* Custom login button text color */
    border: 2px solid #C30808;
}

.page-resources-platform-advantages__btn-login:hover {
    background-color: #a00606;
    transform: translateY(-3px);
}

.page-resources-platform-advantages__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-resources-platform-advantages__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: none; /* No CSS filter */
}

/* Video Section */
.page-resources-platform-advantages__video-section {
    background-color: #f8f8f8; /* Light background for video section */
    padding: 60px 20px;
    text-align: center;
    color: #333333;
}

.page-resources-platform-advantages__video-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 30px auto 0;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
}

.page-resources-platform-advantages__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Make it clickable over the video */
    cursor: pointer;
}

.page-resources-platform-advantages__video {
    width: 100%;
    height: auto;
    display: block;
    filter: none; /* No CSS filter */
}

/* Content Area */
.page-resources-platform-advantages__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* White background for main content */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources-platform-advantages__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-platform-advantages__section-title {
    font-size: 2.2em;
    color: #017439; /* Brand primary color for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    font-weight: bold;
}

.page-resources-platform-advantages__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

.page-resources-platform-advantages__text-block {
    margin-bottom: 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #333333;
}

.page-resources-platform-advantages__feature-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-platform-advantages__feature-block--reverse {
    flex-direction: row-reverse;
}

.page-resources-platform-advantages__feature-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    filter: none; /* No CSS filter */
    max-width: 100%; /* Ensure responsiveness */
    display: block;
}

.page-resources-platform-advantages__feature-text {
    flex: 2;
    min-width: 300px;
}

.page-resources-platform-advantages__sub-title {
    font-size: 1.6em;
    color: #017439; /* Brand primary color for sub-titles */
    margin-bottom: 15px;
    font-weight: bold;
}

/* FAQ Section */
.page-resources-platform-advantages__faq-list {
    margin-top: 40px;
}

.page-resources-platform-advantages__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-platform-advantages__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
    color: #333333;
}

.page-resources-platform-advantages__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-platform-advantages__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #017439; /* Brand primary color for FAQ titles */
    font-weight: bold;
}

.page-resources-platform-advantages__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #017439;
    transition: transform 0.3s ease;
}