/* Alapbeállítások */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* Hero szekció */
.hero-section {
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #212529;
 
}

/* Előnyök kártyák */
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #0d6efd;
}

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

.benefit-card .icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* Csomag kártyák (Pricing) */
.card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

.border-primary {
    border-width: 2px !important;
}



/* Badge a népszerű csomagnál */
.badge {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Lista stílus a kártyákban */
ul li {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {

    .hero-section {
    padding: 80x 0 40px 0;
}

   .hero-section h1 {
    font-size: calc(1.8rem + 2.5vw) ;
    color: #212529;
    
}

}