body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fcfcfc;
    margin: 0;
    padding: 60px 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 320px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

.btn {
    display: inline-block;
    background-color: #3000bb;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 25px;
    text-align: center;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

ul {
    padding: 0;
    list-style: none;
}

ul li {
    margin: 10px 0;
    color: #333;
    line-height: 1.5;
}

ul li::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: bold;
}

strong {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

@media (max-width: 1024px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}