body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #1a1a1a;
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 1;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0.5rem 0;
    opacity: 0.9;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 1.2rem;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.car-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: background 0.3s ease;
}

.car-card:hover {
    background: #e0f2fe;
}

.car-card h3 {
    margin: 0.5rem 0;
    color: #1e3a8a;
    font-size: 1.4rem;
}

blockquote {
    background: #f1f5f9;
    border-left: 5px solid #3b82f6;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 5px;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: #1e3a8a;
}

a {
    color: #061ef3;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    color: #1e40af;
}

.call-to-action {
    text-align: center;
    background: #2d61b4;
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.call-to-action h2 {
    color: white;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #1e3a8a;
    color: white;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    main {
        padding: 1.5rem;
    }

    section {
        padding: 1.5rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .car-card {
        padding: 1rem;
    }

    .car-card h3 {
        font-size: 1.2rem;
    }
}