
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            padding: 20px 40px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
        }

        .logo p {
            font-size: 12px;
            color: #666;
            font-weight: 400;
        }

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

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #666;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('image/p1.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 250px 20px;
            position: relative;
        }

        .hero h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 16px;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.5;
        }

        .bike-silhouette {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 100px;
        }

        /* Good for You Section */
        .good-for-you {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .good-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .good-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .good-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }

        .good-text > p {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .benefit-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            margin-top: 2px;
        }

        .benefit-icon svg {
            width: 100%;
            height: 100%;
        }

        .benefit-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .benefit-text p {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        /* Find Your Perfect Ride Section */
        .perfect-ride {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .perfect-ride-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .perfect-ride h3 {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .perfect-ride-container > p {
            text-align: center;
            font-size: 14px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 50px;
        }

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

        .bike-card {
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 8px;
        }

        .bike-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .bike-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .bike-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Engineered for Excellence Section */
        .engineered {
            padding: 80px 20px;
        }

        .engineered-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .engineered h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .engineered-container > p {
            font-size: 14px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .engineering-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
        }

        .engineering-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
        }

        .engineering-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .engineering-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Why Choose Section */
        .why-choose {
            background-color: #fff;
            padding: 80px 20px;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose h3 {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .why-choose-container > p {
            text-align: center;
            font-size: 14px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
        }

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

        .feature-card {
            text-align: center;
        }

        .feature-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .feature-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .feature-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials h3 {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #333;
        }

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

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
        }

        .testimonial-text {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #333;
        }

        .author-info h5 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 12px;
            color: #999;
        }

        /* Commitment Section */
        .commitment {
            padding: 80px 20px;
            background-color: #fff;
        }

        .commitment-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .commitment-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .commitment-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }

        .commitment-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .commitment-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Footer */
        footer {
            background-color: #1a1a2e;
            color: #fff;
            padding: 60px 20px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-about h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-about p {
            font-size: 13px;
            color: #b0b0b0;
            line-height: 1.6;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

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

        .footer-contact p {
            font-size: 14px;
            color: #b0b0b0;
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #666;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #666;
            font-size: 18px;
            transition: color 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #fff;
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
                padding-top: 80px;
                z-index: 999;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

            nav li {
                padding: 15px 0;
                border-bottom: 1px solid #eee;
            }

            nav a {
                font-size: 16px;
                display: block;
            }

            .hamburger {
                display: flex;
                z-index: 1000;
            }

            .hero h2 {
                font-size: 32px;
            }

            .hero p {
                font-size: 14px;
            }

            .good-content,
            .commitment-content {
                grid-template-columns: 1fr;
            }

            .bike-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .engineering-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .perfect-ride h3,
            .why-choose h3,
            .engineered h3,
            .testimonials h3,
            .good-text h3,
            .commitment-text h3 {
                font-size: 28px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .bike-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .good-content,
            .commitment-content {
                gap: 40px;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 998;
        }

        .overlay.active {
            display: block;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
