﻿.platform-header {
    background: linear-gradient(135deg, #f7fbfe, #eef7fd);
    border-bottom: 2px solid #e6f1fa;
    padding: 3% 0;
    margin-bottom: 2%;
    text-align: center;
}

.platform-page-title {
    font-size: 250%;
    font-weight: 700;
    color: #0d5f7c;
    margin: 0;
}

.platform-section {
    padding: 3% 0;
}

.platform-points-list {
    list-style: none;
    padding: 0;
    margin: 2% 0 0;
}

    .platform-points-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: #0d5f7c;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .platform-points-list i {
        color: #00adee;
        font-size: 1.1rem;
    }

.platform-what-is-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .platform-header {
        padding: 28px 15px;
    }
}



.platform-components-subtitle {
    font-size: 1rem;
    color: #4A4A4A;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.component-card {
    background: #f6fbfe;
    border: 2px solid #cceeff;
    border-radius: 14px;
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .component-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(13, 95, 124, 0.12);
    }

.component-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: #00adee;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.component-title {
    font-weight: 650;
    font-size: 0.95rem;
    color: #0d5f7c;
    margin: 0;
    line-height: 1.3;
}