:root {
    --primary-color: #c73b12;
    --primary-gradient: linear-gradient(90deg, #c73b12 0%, #f89e1b 100%);
    --dark-bg: #0d1420;
    --light-text: #ffffff;
    --gray-text: #a8a8a8;
    --dark-border: #2c3645;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text);
    padding-left: 20px;
}

.nav-links {
    display: flex;
    padding-right: 20px;
}

.nav-links a {
    margin-left: 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.text-block {
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(199, 59, 18, 0.4);
}

/* Mission Section */
.mission {
    background-color: #141d2e;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid var(--dark-border);
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Guide Section */
.guide {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.guide-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.guide-content {
    flex: 1;
}

.list-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.list-item:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Bike Types Section */
.bike-types h2 {
    margin-bottom: 20px;
}

.bike-types-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.bike-card {
    border-radius: 10px;
    overflow: hidden;
}

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

.bike-info {
    padding: 15px 0;
}

.bike-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.bike-desc {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* How to Choose Section */
.how-to-choose {
    background-color: #141d2e;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid var(--dark-border);
}

.choose-steps {
    margin: 30px 0;
}

.choose-step {
    margin-bottom: 15px;
}

.step-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.bike-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

/* Popular Models Section */
.popular-models {
    margin: 60px 0;
}

.models-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.model-card {
    border-radius: 10px;
    overflow: hidden;
}

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

.model-info {
    padding: 15px 0;
}

.model-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.model-desc {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Contact Section */
.contact {
    background-color: #141d2e;
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid var(--dark-border);
    text-align: center;
}

.contact-info {
    margin: 30px 0;
}

.contact-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    margin: 0 10px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c73b12;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cookie-content {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accept-all-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.necessary-only-btn {
    background: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero, .guide {
        flex-direction: column;
    }

    .hero-image, .guide-image {
        order: -1;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bike-grid, .models-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .mission, .how-to-choose, .contact {
        padding: 30px 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}