:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-color: #EA7C07;
    --bg-white: #FFFFFF;
    --black: #000000;
}

.page-resources-sv288-sv388-platform-advantages {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--bg-white); /* Assuming body background is light */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

/* Hero Section */
.page-resources-sv288-sv388-platform-advantages__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-light);
    background-color: var(--primary-color); /* Fallback background */
}

.page-resources-sv288-sv388-platform-advantages__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-sv288-sv388-platform-advantages__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-sv288-sv388-platform-advantages__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-sv288-sv388-platform-advantages__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-sv288-sv388-platform-advantages__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-sv288-sv388-platform-advantages__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Sections */
.page-resources-sv288-sv388-platform-advantages__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-sv288-sv388-platform-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-sv288-sv388-platform-advantages__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-sv288-sv388-platform-advantages__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sv288-sv388-platform-advantages__image-centered {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.page-resources-sv288-sv388-platform-advantages__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sv288-sv388-platform-advantages__feature-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.page-resources-sv288-sv388-platform-advantages__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-sv288-sv388-platform-advantages__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-sv288-sv388-platform-advantages__feature-card p {
    font-size: 1em;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-sv288-sv388-platform-advantages__card-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

/* Comparison Table */
.page-resources-sv288-sv388-platform-advantages__comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.page-resources-sv288-sv388-platform-advantages__table-header,
.page-resources-sv288-sv388-platform-advantages__table-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.page-resources-sv288-sv388-platform-advantages__table-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.page-resources-sv288-sv388-platform-advantages__table-cell {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-sv288-sv388-platform-advantages__table-header .page-resources-sv288-sv388-platform-advantages__table-cell:first-child,
.page-resources-sv288-sv388-platform-advantages__table-row .page-resources-sv288-sv388-platform-advantages__table-cell:first-child {
    border-left: none;
    text-align: left;
}

.page-resources-sv288-sv388-platform-advantages__table-row:nth-child(odd) {
    background-color: #f9f9f9;
}
.page-resources-sv288-sv388-platform-advantages__table-row:nth-child(even) {
    background-color: var(--secondary-color);
}


/* CTA Section */
.page-resources-sv288-sv388-platform-advantages__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-sv288-sv388-platform-advantages__cta-section .page-resources-sv288-sv388-platform-advantages__section-title {
    color: var(--text-light);
}

.page-resources-sv288-sv388-platform-advantages__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.page-resources-sv288-sv388-platform-advantages__btn-primary,
.page-resources-sv288-sv388-platform-advantages__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    box-sizing: border-box; /* Ensure padding doesn't increase total width */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-sv288-sv388-platform-advantages__btn-primary {
    background-color: var(--button-login-color); /* Use login color for primary action */
    color: var(--text-light);
    border: 2px solid var(--button-login-color);
}

.page-resources-sv288-sv388-platform-advantages__btn-primary:hover {
    background-color: #d16b06; /* Example of darker color */
    border-color: #d16b06;
}

.page-resources-sv288-sv388-platform-advantages__btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-resources-sv288-sv388-platform-advantages__btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* FAQ Section */
.page-resources-sv288-sv388-platform-advantages__faq-section {
    padding: 60px 20px;
}

.page-resources-sv288-sv388-platform-advantages__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-resources-sv288-sv388-platform-advantages__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sv288-sv388-platform-advantages__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
    color: var(--text-dark);
}

.page-resources-sv288-sv388-platform-advantages__faq-question:hover {
    background-color: #eaeaea;
}

.page-resources-sv288-sv388-platform-advantages__faq-heading {
    font-size: 1.2em;
    margin: 0;
    color: var(--primary-color);
}

.page-resources-sv288-sv388-platform-advantages__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-resources-sv288-sv388-platform-advantages__faq-item.active .page-resources-sv288-sv388-platform-advantages__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
}

.page-resources-sv288-sv388-platform-advantages__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-dark);
}

.page-resources-sv288-sv388-platform-advantages__faq-item.active .page-resources-sv288-sv388-platform-advantages__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-resources-sv288-sv388-platform-advantages__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

/* Color Contrast Classes */
.page-resources-sv288-sv388-platform-advantages__dark-bg {
  background-color: var(--primary-color); /* #26A9E0 */
  color: var(--text-light); /* #ffffff */
}

.page-resources-sv288-sv388-platform-advantages__light-bg {
  background-color: var(--secondary-color); /* #FFFFFF */
  color: var(--text-dark); /* #333333 */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sv288-sv388-platform-advantages__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sv288-sv388-platform-advantages__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-sv288-sv388-platform-advantages {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-sv288-sv388-platform-advantages__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure spacing on mobile */
    }
    .page-resources-sv288-sv388-platform-advantages__hero-title {
        font-size: 2em;
    }
    .page-resources-sv288-sv388-platform-advantages__hero-description {
        font-size: 1em;
    }
    .page-resources-sv288-sv388-platform-advantages__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sv288-sv388-platform-advantages__section-title {
        font-size: 1.8em;
    }
    .page-resources-sv288-sv388-platform-advantages__text-block {
        font-size: 1em;
    }
    .page-resources-sv288-sv388-platform-advantages__container,
    .page-resources-sv288-sv388-platform-advantages__cta-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsiveness */
    .page-resources-sv288-sv388-platform-advantages img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-sv288-sv388-platform-advantages__container img,
    .page-resources-sv288-sv388-platform-advantages__feature-card img,
    .page-resources-sv288-sv388-platform-advantages__cta-section img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Buttons responsiveness */
    .page-resources-sv288-sv388-platform-advantages__btn-primary,
    .page-resources-sv288-sv388-platform-advantages__btn-secondary,
    .page-resources-sv288-sv388-platform-advantages a[class*="button"],
    .page-resources-sv288-sv388-platform-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-sv288-sv388-platform-advantages__cta-buttons,
    .page-resources-sv288-sv388-platform-advantages__button-group,
    .page-resources-sv288-sv388-platform-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;
        flex-direction: column; /* Ensure vertical stacking for multiple buttons */
    }
}