/* ===================================
   WELCHES WOHNMOBIL FÜR ANFÄNGER
   Professional CSS Styling
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d2691e;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --dark-color: #1a1a1a;
    --light-color: #fef9f3;
    --gray-color: #6c757d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #fef9f3 0%, #fce7d9 100%);
    padding: 4rem 0;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.quiz-start {
    text-align: center;
}

.quiz-intro {
    margin-bottom: 2rem;
}

.quiz-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.quiz-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
}

.quiz-benefits li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: var(--gray-color);
    font-weight: 600;
}

.question-container {
    animation: fadeIn 0.5s ease;
}

.question {
    margin-bottom: 2rem;
}

.question h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    padding: 1.5rem;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.quiz-option:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.quiz-option.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quiz-option strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.quiz-results {
    animation: fadeIn 0.5s ease;
}

.result-content {
    text-align: center;
}

.result-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.result-profile {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
}

.result-profile h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-recommendation {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.result-recommendation img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
}

.result-recommendation h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-tips {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
}

.result-tips h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-tips ul {
    list-style: none;
    padding: 0;
}

.result-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.result-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.85), rgba(231, 111, 81, 0.75)), 
                url('https://images.unsplash.com/photo-1527786356703-4b100091cd2c?w=1920') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.sticky {
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.lead {
    font-size: 1.25rem;
    color: var(--gray-color);
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    background: var(--light-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.feature-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.content-image {
    position: sticky;
    top: 100px;
}

.content-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--gray-color);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Carado Section */
.carado-section {
    background: linear-gradient(135deg, #fef9f3 0%, #fce7d9 100%);
}

.brand-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.advantage-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.advantage-list li {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.advantage-list li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Model Comparison */
.model-comparison {
    margin-top: 4rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.model-card.featured {
    border: 3px solid var(--accent-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.model-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-content {
    padding: 2rem;
}

.model-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.model-category {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.model-specs {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-color);
}

.spec-value {
    color: var(--gray-color);
}

.model-description {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.model-highlights {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.model-highlights h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.model-highlights ul {
    list-style: none;
    padding: 0;
}

.model-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.model-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.carado-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.carado-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.inline-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.inline-link:hover {
    color: var(--secondary-color);
}

/* Buying Guide */
.buying-guide {
    background: var(--white);
}

.guide-content h3 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.decision-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.decision-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Vehicle Types */
.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.type-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h4 {
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    margin: 0;
}

.type-pros-cons {
    padding: 2rem;
}

.pros, .cons {
    margin-bottom: 1.5rem;
}

.pros h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cons h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.type-recommendation {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* New vs Used */
.new-vs-used {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-column {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.comparison-column h4 {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 15px 15px 0 0;
}

.recommendation-box {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    border-radius: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Checklist */
.checklist-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.checklist-category {
    margin: 2rem 0;
}

.checklist-category h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 0.8rem;
    padding-left: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--light-color);
    border-radius: 8px;
    position: relative;
}

.checklist li::before {
    content: "☐";
    position: absolute;
    left: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Finance Section */
.finance-section {
    margin: 3rem 0;
}

.finance-options, .insurance-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.option, .insurance {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.option h5, .insurance h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.interest-rate, .cost {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Tips Section */
.tips-section {
    background: var(--light-color);
}

.first-steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Packing Lists */
.packing-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.packing-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.packing-category h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.packing-category ul {
    list-style: none;
    padding: 0;
}

.packing-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.packing-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Parking Guide */
.parking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.parking-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.parking-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.parking-option .tip {
    background: var(--light-color);
    padding: 1rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-price {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Maintenance Guide */
.maintenance-guide {
    margin: 3rem 0;
}

.maintenance-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.schedule-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cost-overview {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cost-table th, .cost-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cost-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.cost-table .total-row {
    background: var(--light-color);
    font-weight: 600;
}

.cost-note {
    font-style: italic;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mistake-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.mistake-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.solution {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

/* Route Suggestion */
.route-suggestion {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.route-day {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.route-day h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.route-note {
    background: var(--light-color);
    padding: 1rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    border-radius: 8px;
}

/* Etiquette Rules */
.etiquette-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rule {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.rule h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Winter Camping */
.winter-requirements, .winter-tips {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.requirement-list, .tips-list {
    list-style: none;
    padding: 0;
}

.requirement-list li, .tips-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.requirement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.tips-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.winter-note {
    background: var(--light-color);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
    border-radius: 8px;
}

/* Conclusion */
.conclusion {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
}

.final-tips {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.closing {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    padding: 0.5rem 0;
}

.footer-section a {
    color: var(--light-color);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.image-credits {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-image {
        position: relative;
        top: 0;
    }
    
    .new-vs-used {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .models-grid,
    .decision-grid,
    .vehicle-types,
    .packing-lists,
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
