:root {
    --primary-color: #1A202C;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f8f8f8; /* Slightly off-white for contrast */
    --background-dark: #1A202C;
    --card-background-light: #ffffff;
    --card-background-dark: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark bg */
    --border-color: #e0e0e0;
}

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

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

.page-resources-s66-platform-advantages__hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0D1017);
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-s66-platform-advantages__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--secondary-color); /* Use accent color for H1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-s66-platform-advantages__intro-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-resources-s66-platform-advantages__cta-buttons--center {
    margin-top: 40px;
}

.page-resources-s66-platform-advantages__cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping for desktop */
}

.page-resources-s66-platform-advantages__cta-button--primary {
    background: var(--secondary-color);
    color: var(--primary-color); /* Dark text on yellow background */
}

.page-resources-s66-platform-advantages__cta-button--primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-s66-platform-advantages__cta-button--secondary {
    background: transparent;
    color: var(--text-color-light);
    border: 2px solid var(--secondary-color);
}

.page-resources-s66-platform-advantages__cta-button--secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-s66-platform-advantages__content-section {
    padding: 60px 0;
}

.page-resources-s66-platform-advantages__light-bg {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

.page-resources-s66-platform-advantages__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-resources-s66-platform-advantages__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-s66-platform-advantages__section-title--light {
    color: var(--secondary-color); /* Use accent color on dark background */
}

.page-resources-s66-platform-advantages__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-s66-platform-advantages__paragraph--light {
    color: rgba(255, 255, 255, 0.85);
}

.page-resources-s66-platform-advantages__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-s66-platform-advantages__features-section {
    padding: 80px 0;
}

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

.page-resources-s66-platform-advantages__feature-card {
    background: var(--card-background-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-s66-platform-advantages__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-s66-platform-advantages__feature-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-resources-s66-platform-advantages__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for feature images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}