/* Változók a könnyű módosításhoz */
:root {
    --brand-blue: #0d6efd;
    --brand-white: #ffffff;
    --light-bg: #f8faff;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--brand-white);
    color: #333;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--brand-blue) !important;
}

/* Hero szekció design */
.hero-section {
    background-color: var(--brand-blue);
    padding: 120px 0;
    border-radius: 0 0 60px 60px;
}

/* Kártya stílusok */
.card {
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--brand-white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08) !important;
}

.icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

/* Kiemelések */
.highlight-text {
    color: var(--brand-blue);
    font-weight: 600;
}

.info-banner {
    background-color: var(--light-bg);
    border-left: 6px solid var(--brand-blue);
    padding: 40px;
    border-radius: 0 20px 20px 0;
}

.color-primary {
    color: var(--brand-blue);
}

/* Egyedi gomb */
.btn-custom {
    background-color: var(--brand-blue);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: opacity 0.2s ease;
}

.btn-custom:hover {
    color: white;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .footer-links {
        text-align: right;
    }
}