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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #0099cc;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    background-color: #4cb4d1;
    color: white;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background-color: #4cb4d1;
    color: white;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 0 0 10px 10px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero-image img {
    display: block;
    border-radius: 5px;
}

.cta-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

/* Bike Models Section */
.bike-models {
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.bike-models h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.bike-card {
    background-color: #e8f7fb;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-5px);
}

.bike-card img {
    margin-bottom: 1rem;
}

.bike-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.about-image {
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 1.6rem;
}

/* Tips Section */
.tips {
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
    background-color: #f2f2f2;
    border-radius: 10px;
}

.tips h2 {
    font-size: 1.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.2rem;
}

/* Order Section */
.order {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.order h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.order-steps {
    margin: 2rem 0;
}

.order-step {
    margin-bottom: 1.5rem;
}

.order-step h3 {
    font-size: 1.2rem;
    color: #0099cc;
}

.shipping-info {
    margin-top: 2rem;
}

.shipping-image {
    margin-bottom: 1.5rem;
}

.shipping-text h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.shipping-text h3 {
    font-size: 1.2rem;
    color: #0099cc;
    margin-top: 1.5rem;
}

/* Contact Form */
.contact {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.bike-image {
    text-align: center;
}

/* Buttons */
.cta-button, .submit-button {
    display: inline-block;
    background-color: #2a94b0;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .submit-button:hover {
    background-color: #1d7a93;
}

/* Footer */
.footer {
    background-color: #4cb4d1;
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 10px 10px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.legal-content h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0099cc;
}

/* Thank You Page */
.thank-you {
    padding: 4rem 1rem;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 2rem;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
    }

    .about {
        display: flex;
        gap: 2rem;
    }

    .about-image {
        flex: 1;
        margin-bottom: 0;
    }

    .about-text {
        flex: 1;
    }

    .shipping-info {
        display: flex;
        gap: 2rem;
    }

    .shipping-image {
        flex: 1;
        margin-bottom: 0;
    }

    .shipping-text {
        flex: 1;
    }

    .contact {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .contact-form {
        flex: 1;
        margin-bottom: 0;
    }

    .bike-image {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0;
    }

    .hero {
        padding: 3rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .bike-models, .tips, .order, .about, .contact {
        padding: 3rem;
    }

    .legal-content {
        padding: 3rem;
    }
}