.pricing-section {
    padding: 80px 20px;
    background-color: #f8faff;
    text-align: center;
}

.pricing-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.pricing-size {
    font-weight: bold;
    color: #1a2b4e;
    margin-bottom: 20px;
    height: 50px;
    /* Align heights */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-euro {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-addon {
    font-size: 0.95rem;
    color: #718096;
    background: #edf2f7;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 20px;
}