* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden; /* Ez akadályozza meg, hogy oldalra lehessen húzni a képernyőt */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link img {
    height: 40px; 
    width: auto;
    display: block;
}

.logo-text {
    color: #1b2a4a;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: #f26522;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar nav a {
    text-decoration: none;
    color: #1b2a4a;
    font-weight: 700;
    font-size: 13px;
    transition: color 0.2s;
}

.navbar nav a:hover {
    color: #f26522;
}

.hero {
    text-align: center;
    padding: 30px 15px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 26px;
    color: #1b2a4a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.booking-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-top: 5px solid #f26522;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #f26522;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background-color: #d85413;
}

.vehicle-showcase {
    margin: 20px auto 40px;
    text-align: center;
}

.vehicle-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.features {
    margin-top: 40px;
    background: #f7f9fc;
    padding: 30px 15px;
    border-radius: 12px;
    text-align: left;
}

.features h2 {
    font-size: 20px;
    color: #1b2a4a;
    margin-bottom: 20px;
    text-align: center;
}

.features ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.8;
    font-size: 15px;
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    font-size: 14px;
}

footer .copy {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.alert {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Mobilos reszponzivitás (768px alatt) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .navbar nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }
    .hero h1 {
        font-size: 22px;
    }
    .logo-text {
        font-size: 18px;
    }
}