/* style/index-platform-features.css */
.page-index-platform-features {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A203C; /* Main dark background */
}

.page-index-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-platform-features__hero {
    background: linear-gradient(135deg, #0A203C 0%, #34495e 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero */
}

.page-index-platform-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-platform-features__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-platform-features__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-platform-features__section:last-of-type {
    border-bottom: none;
}

.page-index-platform-features__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-index-platform-features__content-block p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-index-platform-features__flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-platform-features__flex-row--reverse {
    flex-direction: row-reverse;
}

.page-index-platform-features__content-block,
.page-index-platform-features__image-block {
    flex: 1;
}

.page-index-platform-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-platform-features__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A203C; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-index-platform-features__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-platform-features__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-platform-features__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A203C;
}

.page-index-platform-features__cta-button--primary {
    background-color: #FFD700;
    color: #0A203C;
    border-color: #FFD700;
}

.page-index-platform-features__cta-final {
    text-align: center;
    background-color: #0A203C;
    padding-bottom: 100px;
}

.page-index-platform-features__cta-final .page-index-platform-features__section-title {
    margin-bottom: 20px;
}

.page-index-platform-features__cta-final p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
    font-size: 1.15em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-platform-features__hero-title {
        font-size: 2.8em;
    }
    .page-index-platform-features__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-platform-features__section-title {
        font-size: 2em;
    }
    .page-index-platform-features__flex-row {
        flex-direction: column;
        text-align: center;
    }
    .page-index-platform-features__flex-row--reverse {
        flex-direction: column;
    }
    .page-index-platform-features__image-block {
        margin-top: 30px;
    }
    .page-index-platform-features__content-block p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-index-platform-features__hero {
        padding: 80px 0;
    }
    .page-index-platform-features__hero-title {
        font-size: 2.2em;
    }
    .page-index-platform-features__hero-subtitle {
        font-size: 1em;
    }
    .page-index-platform-features__section {
        padding: 60px 0;
    }
    .page-index-platform-features__section-title {
        font-size: 1.8em;
    }
    .page-index-platform-features__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-platform-features__hero {
        padding: 60px 0;
    }
    .page-index-platform-features__hero-title {
        font-size: 1.8em;
    }
    .page-index-platform-features__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-platform-features__section {
        padding: 40px 0;
    }
    .page-index-platform-features__section-title {
        font-size: 1.5em;
    }
    .page-index-platform-features__content-block p {
        font-size: 0.9em;
    }
}