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

.color-primary {
    color: #0d6efd;
}

/* Navigáció */
.navbar-brand {
    color: #0d6efd;
}

.btn-primary{
    background-color: #0d6efd;
    color: white !important;    /* A szöveg fehér legyen */
    border-radius: 5px;
    padding: 8px 20px;
}

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

.nagy-szoveg {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.check-list li {
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 500;
}

/* Kártyák */
.card {
    transition: transform 0.3s ease;
}

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

.border-top-primary {
    border-top: 5px solid #0d6efd !important;
}

.bg-blue-light {
    background-color: #f0f7ff;
}

/* Karbantartás box */
.karbantartas-box {
    background: #212529; /* Sötét antracit */
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Listák */
ul li {
    margin-bottom: 8px;
}