/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.plans-container {
    max-width: 800px;
    margin: 0 auto;
}

.plans-header h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

/* Cards Container */
.plan-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Plan Card Style */
.plan-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: scale(1.05);
}

/* Title */
.plan-card h3 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
}

/* Plan Details */
.plan-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.plan-label {
    font-weight: bold;
}

.plan-price {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

/* Responsive styles */
@media (max-width: 768px) {
    .plans-header h1 {
        font-size: 2rem;
    }

    .plan-card h3 {
        font-size: 1.5rem;
    }

    .plan-item {
        font-size: 1rem;
    }

    .plan-price {
        font-size: 1.2rem;
    }
}
