/* style/platform-features.css */
.page-platform-features {
    font-family: 'Arial', sans-serif;
    color: #2C3E50; /* Main text color */
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

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

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

.page-platform-features__hero-section {
    background: linear-gradient(135deg, #2C3E50 0%, #F39C12 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.page-platform-features__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-platform-features__hero-actions .page-platform-features__btn {
    margin: 0 10px;
}

.page-platform-features__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-platform-features__btn--primary {
    background-color: #F39C12; /* Accent color */
    color: #2C3E50; /* Main text color for contrast */
    border: 2px solid #F39C12;
}

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

.page-platform-features__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-platform-features__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-platform-features__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border: 1px solid #F39C12;
    background-color: #F39C12;
    color: #2C3E50;
}

.page-platform-features__btn--small:hover {
    background-color: #e08e0b;
    border-color: #e08e0b;
    color: #FFFFFF;
}

.page-platform-features__section-title {
    font-size: 2.5em;
    color: #2C3E50;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-features__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    border-radius: 2px;
}

.page-platform-features__features-grid,
.page-platform-features__technology-grid,
.page-platform-features__steps-grid,
.page-platform-features__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-features__feature-item,
.page-platform-features__technology-item,
.page-platform-features__step-item,
.page-platform-features__detail-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-platform-features__feature-item:hover,
.page-platform-features__technology-item:hover,
.page-platform-features__step-item:hover,
.page-platform-features__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-platform-features__feature-icon,
.page-platform-features__technology-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.page-platform-features__feature-title,
.page-platform-features__technology-title,
.page-platform-features__step-title,
.page-platform-features__detail-title {
    font-size: 1.6em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-platform-features__detail-title a {
    color: #2C3E50;
    text-decoration: none;
}

.page-platform-features__detail-title a:hover {
    color: #F39C12;
    text-decoration: underline;
}

.page-platform-features__feature-description,
.page-platform-features__technology-description,
.page-platform-features__step-description,
.page-platform-features__detail-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-platform-features__link-more {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom */
    display: block;
    padding-top: 10px;
}

.page-platform-features__link-more:hover {
    color: #2C3E50;
}

.page-platform-features__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.page-platform-features__column-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-features__column-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-platform-features__column-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-platform-features__column-title {
    font-size: 1.8em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-platform-features__column-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-platform-features__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 40px;
    margin-top: 40px;
}

.page-platform-features__content-text {
    flex: 1;
    min-width: 300px;
}

.page-platform-features__content-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-platform-features__responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-features__sub-section-title {
    font-size: 2em;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-platform-features__paragraph {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
}

.page-platform-features__center-text {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-features__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #F39C12;
    color: #2C3E50;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-platform-features__get-started-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-platform-features__hero-title {
        font-size: 2.5em;
    }

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

    .page-platform-features__sub-section-title {
        font-size: 1.7em;
    }

    .page-platform-features__features-grid,
    .page-platform-features__technology-grid,
    .page-platform-features__steps-grid,
    .page-platform-features__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-platform-features__column-item {
        max-width: 100%;
    }

    .page-platform-features__content-row {
        flex-direction: column;
        text-align: center;
    }
}

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

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

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

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

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

    .page-platform-features__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-platform-features__features-grid,
    .page-platform-features__technology-grid,
    .page-platform-features__steps-grid,
    .page-platform-features__detail-grid {
        grid-template-columns: 1fr;
    }

    .page-platform-features__column-item {
        min-width: unset;
    }

    .page-platform-features__get-started-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-platform-features__hero-title {
        font-size: 1.8em;
    }

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

    .page-platform-features__hero-actions .page-platform-features__btn {
        margin: 5px 0;
        display: block;
        width: 100%;
    }
}