/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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 and navigation */
header {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* Hero section */
.hero {
    background-color: #f5fbf6;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #388E3C;
}

/* Section styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #212529;
    font-weight: 700;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    margin: 0 auto 3rem;
}

/* About section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Bikes section */
.bikes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.bike-card {
    flex: 1 0 calc(25% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bike-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.bike-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 600;
}

.bike-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials section */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1 0 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #4CAF50;
    font-weight: 600;
}

/* Shipping section */
.shipping-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 2rem;
}

.shipping-text {
    flex: 1;
}

.shipping-options {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.shipping-column {
    flex: 1;
}

.shipping-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 600;
}

.shipping-list {
    list-style: none;
}

.shipping-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.shipping-list li::before {
    content: "• ";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Maintenance section */
.maintenance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.maintenance-card {
    flex: 1 0 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.maintenance-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #212529;
    font-weight: 600;
}

.maintenance-text {
    color: #555;
}

/* FAQ section */
.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #212529;
    font-weight: 600;
}

.faq-answer {
    color: #555;
}

/* Contact section */
.contact-section {
    background-color: #f9f9f9;
}

.contact-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #4CAF50;
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
}

/* Footer */
footer {
    background-color: #1a1f2e;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-contact {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #4CAF50;
}

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

/* Responsive design */
@media (max-width: 992px) {
    .hero-content,
    .shipping-content,
    .shipping-options {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .bike-card,
    .testimonial-card,
    .maintenance-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bike-card,
    .testimonial-card,
    .maintenance-card {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .shipping-column {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
    
    .shipping-options {
        flex-direction: column;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}