
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    padding: 80px 0;
}

/* Kártya animációk és stílus */
.custom-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.active-card {
    border-width: 2px !important;
    transform: scale(1.03);
}

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

/* Gombok és Badge-ek */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
}

.badge {
    font-weight: 500;
    border-radius: 6px;
}

/* Listák */
ul.list-unstyled li {
    font-size: 0.95rem;
    color: #4a4a4a;
}

h1 {
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: calc(1.5rem + 2vw); /* Rugalmas betűméret */
    }
    
    .hero-section {
        padding: 40px 0;
    }

    /* Mobilon a hover effekt sokszor zavaró vagy félrekattintást okoz, 
       illetve a scale(1.03) kilógást okozhat a széleken */
    .active-card {
        transform: scale(1); 
        margin: 10px;
    }
}