.page-index-platform-highlights {
    font-family: 'Arial', sans-serif;
    color: #E5E5E5; /* Light grey for general text on dark background */
    background-color: #1A1A1A;
    line-height: 1.6;
}

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

.page-index-platform-highlights__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-index-platform-highlights__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-platform-highlights__hero-subtitle {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-platform-highlights__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    overflow: hidden;
}

.page-index-platform-highlights__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

.page-index-platform-highlights__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-index-platform-highlights__btn--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

.page-index-platform-highlights__btn--primary:hover {
    background-color: #E0B800;
    border-color: #E0B800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-index-platform-highlights__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-platform-highlights__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #E0B800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.15);
}

.page-index-platform-highlights__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-index-platform-highlights__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-index-platform-highlights__section-title .highlight {
    color: #FFD700;
}

.page-index-platform-highlights__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-index-platform-highlights__text-content strong {
    color: #FFD700;
}

.page-index-platform-highlights__text-content .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-index-platform-highlights__introduction .page-index-platform-highlights__text-content {
    text-align: center;
}

.page-index-platform-highlights__features {
    background-color: #1A1A1A;
}

.page-index-platform-highlights__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-platform-highlights__feature-item {
    background-color: #282828;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-platform-highlights__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-platform-highlights__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-platform-highlights__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-platform-highlights__feature-description {
    font-size: 1em;
    color: #CCCCCC;
    text-align: left;
}

.page-index-platform-highlights__cta-banner {
    background: linear-gradient(90deg, #FFD700, #E0B800);
    padding: 80px 0;
    color: #1A1A1A;
}

.page-index-platform-highlights__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-platform-highlights__cta-title {
    font-size: 3em;
    color: #1A1A1A;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-index-platform-highlights__cta-title .highlight {
    color: #1A1A1A;
}

.page-index-platform-highlights__cta-description {
    font-size: 1.3em;
    color: #444444;
    margin-bottom: 40px;
}

.page-index-platform-highlights__btn--lg {
    padding: 18px 40px;
    font-size: 1.2em;
    background-color: #1A1A1A;
    color: #FFD700;
    border: 2px solid #1A1A1A;
}

.page-index-platform-highlights__btn--lg:hover {
    background-color: #333333;
    border-color: #333333;
    color: #FFD700;
}

.page-index-platform-highlights__cta-small-text {
    margin-top: 20px;
    font-size: 1em;
    color: #444444;
}

.page-index-platform-highlights__text-link {
    color: #1A1A1A;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-platform-highlights__text-link:hover {
    color: #555555;
}

.page-index-platform-highlights__why-choose {
    background-color: #222222;
}

.page-index-platform-highlights__why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-platform-highlights__why-choose-item {
    background-color: #282828;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-platform-highlights__why-choose-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-platform-highlights__image-full-width {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-platform-highlights__image-responsive {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-index-platform-highlights__faq {
    background-color: #1A1A1A;
    padding-bottom: 80px;
}

.page-index-platform-highlights__accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-index-platform-highlights__accordion-item {
    background-color: #282828;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__accordion-header {
    width: 100%;
    background-color: #333333;
    color: #FFD700;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-platform-highlights__accordion-header:hover {
    background-color: #444444;
}

.page-index-platform-highlights__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-platform-highlights__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-platform-highlights__accordion-content {
    padding: 0 25px;
    background-color: #282828;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-platform-highlights__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #CCCCCC;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-platform-highlights__hero-title {
        font-size: 2.8em;
    }
    .page-index-platform-highlights__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-platform-highlights__section-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 2.5em;
    }
    .page-index-platform-highlights__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-platform-highlights__hero {
        padding: 60px 0;
    }
    .page-index-platform-highlights__hero-title {
        font-size: 2.2em;
    }
    .page-index-platform-highlights__hero-subtitle {
        font-size: 1em;
    }
    .page-index-platform-highlights__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-platform-highlights__section {
        padding: 40px 0;
    }
    .page-index-platform-highlights__section-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__text-content {
        font-size: 0.95em;
    }
    .page-index-platform-highlights__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-index-platform-highlights__feature-title {
        font-size: 1.5em;
    }
    .page-index-platform-highlights__cta-banner {
        padding: 60px 0;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 2em;
    }
    .page-index-platform-highlights__cta-description {
        font-size: 1.1em;
    }
    .page-index-platform-highlights__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-index-platform-highlights__why-choose-grid {
        grid-template-columns: 1fr;
    }
    .page-index-platform-highlights__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-index-platform-highlights__accordion-content p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero-title {
        font-size: 1.8em;
    }
    .page-index-platform-highlights__btn {
        width: 100%;
        margin: 5px 0;
    }
    .page-index-platform-highlights__cta-title {
        font-size: 1.5em;
    }
    .page-index-platform-highlights__btn--lg {
        width: 100%;
    }
    .page-index-platform-highlights__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-index-platform-highlights__feature-item {
        padding: 20px;
    }
    .page-index-platform-highlights__why-choose-item {
        padding: 20px;
    }
}