/* style/index-platform-features.css */
.page-index-platform-features {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-index-platform-features__hero {
    background-color: #0A1A3A; /* Deep Blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-platform-features__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-index-platform-features__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-index-platform-features__hero .page-index-platform-features__container {
    position: relative;
    z-index: 1;
}

.page-index-platform-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.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__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-platform-features__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A1A3A; /* Deep Blue */
}

.page-index-platform-features__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-platform-features__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index-platform-features__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1A3A;
    transform: translateY(-2px);
}

.page-index-platform-features__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-index-platform-features__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-index-platform-features__section-title {
    font-size: 2.5em;
    color: #0A1A3A; /* Deep Blue */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-index-platform-features__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-platform-features__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-index-platform-features__features-grid {
    background-color: #fff;
}

.page-index-platform-features__feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.page-index-platform-features__feature-item:last-child {
    margin-bottom: 0;
}

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

.page-index-platform-features__feature-content {
    flex: 1;
}

.page-index-platform-features__feature-image-wrapper {
    flex: 1;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.page-index-platform-features__feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.page-index-platform-features__feature-image:hover {
    transform: scale(1.03);
}

.page-index-platform-features__feature-title {
    font-size: 1.8em;
    color: #0A1A3A; /* Deep Blue */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-platform-features__feature-text {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 25px;
}

.page-index-platform-features__feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-index-platform-features__feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #555;
    font-size: 1em;
}

.page-index-platform-features__feature-list li::before {
    content: '✔';
    color: #FFD700; /* Gold */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-index-platform-features__cta-bottom {
    background-color: #0A1A3A; /* Deep Blue */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-index-platform-features__cta-content {
    max-width: 900px;
}

.page-index-platform-features__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-platform-features__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-index-platform-features__cta-buttons .page-index-platform-features__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-platform-features__feature-item {
        flex-direction: column;
        text-align: center;
    }

    .page-index-platform-features__feature-item--reverse {
        flex-direction: column;
    }

    .page-index-platform-features__feature-image-wrapper {
        min-width: unset;
        width: 100%;
        margin-top: 30px;
    }

    .page-index-platform-features__feature-list {
        text-align: left;
    }

    .page-index-platform-features__hero-title {
        font-size: 2.5em;
    }

    .page-index-platform-features__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-platform-features__section-title {
        font-size: 2em;
    }

    .page-index-platform-features__feature-title {
        font-size: 1.6em;
    }

    .page-index-platform-features__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-platform-features__hero {
        padding: 60px 0;
    }

    .page-index-platform-features__hero-title {
        font-size: 2em;
    }

    .page-index-platform-features__hero-subtitle {
        font-size: 1em;
    }

    .page-index-platform-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-platform-features__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-index-platform-features__section {
        padding: 40px 0;
    }

    .page-index-platform-features__section-title {
        font-size: 1.8em;
    }

    .page-index-platform-features__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-index-platform-features__feature-item {
        margin-bottom: 60px;
        gap: 20px;
    }

    .page-index-platform-features__feature-title {
        font-size: 1.4em;
    }

    .page-index-platform-features__feature-text {
        font-size: 0.95em;
    }

    .page-index-platform-features__feature-list li {
        font-size: 0.9em;
    }

    .page-index-platform-features__cta-bottom {
        padding: 60px 0;
    }

    .page-index-platform-features__cta-title {
        font-size: 1.8em;
    }

    .page-index-platform-features__cta-description {
        font-size: 1em;
    }

    .page-index-platform-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-platform-features__cta-buttons .page-index-platform-features__btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .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-title {
        font-size: 1.6em;
    }

    .page-index-platform-features__feature-title {
        font-size: 1.2em;
    }

    .page-index-platform-features__cta-title {
        font-size: 1.6em;
    }
}