.refonte-platform-detailed-section {
    padding: 96px 64px 64px 64px;
    background-color: #FFFFFF;
    font-family: var(--font-primary);
    max-width: 1440px;
    margin: 0 auto;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.platform-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    color: #003329;
    /* Dark green */
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
}

.platform-subtitle {
    font-size: 18px;
    color: #4A4A4A;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.platform-content {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
}

.platform-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for platform screenshot */
}

.platform-image img {
    width: 100%;
    height: auto;
    display: block;
}

.platform-features {
    flex: 1;
    text-align: left;
}

.platform-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.platform-features li::before {
    content: "•";
    /* Or custom dot */
    position: absolute;
    left: 0;
    color: #1B4F3E;
    /* Green dot */
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    top: -2px;
}

.platform-features strong {
    color: #1A1A1A;
    font-weight: 500;
}

/* Red/Orange dot decoration */
.platform-decoration-dot {

    width: 29px;
    /* Adjust size based on screenshot/svg native size */
    height: 29px;
    z-index: 10;
    pointer-events: none;
    /* If svg has no shadow/blur, add it here */
    filter: drop-shadow(0 0 10px rgba(255, 92, 92, 0.4));
}

@media (max-width: 1024px) {
    .platform-content {
        flex-direction: column;
        gap: 48px;
    }

    .platform-decoration-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .refonte-platform-detailed-section {
        padding: 64px 24px;
    }

    .platform-title {
        font-size: 32px;
    }
}