.platform-body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.platform-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    flex-wrap: wrap;
}

.platform {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 280px;
    transition: transform 0.3s;
}

.platform:hover {
    transform: translateY(-5px);
}

.platform.pro {
    background: #202577;
    color: #fff;
}

.platform h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.price small {
    font-size: 0.9rem;
    font-weight: normal;
}

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

.platform ul li {
    margin-bottom: 10px;
    align-items: center;
}

.platform ul h4::before {
    content: "✔";
    margin-right: 8px;
    color: green;
    font-weight: bold;
}

.platform.pro ul li::before {
    color: #fff;
}

.btn {
    display: inline-block;
    background: #ffb300;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.platform.pro .btn {
    background: #ffc107;
    color: #000;
}

.badge {
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
}