.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #f8f9fa;
}

.plan {
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    max-width: 320px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.plan h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 20px;
}

.feature {
    margin: 8px 0;
    font-size: 1rem;
    color: #34495e;
}

.btn-ter {
    margin-top: 25px;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-ter:hover {
    background: #2980b9;
}
