
    /* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #b30000, #660000, #ff0000, #cc0000);
      color: white;
      padding: 100px 0;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-section p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .btn-hero {
      background-color: white;
      color: #b30000;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 5px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-hero:hover {
      background-color: #f8f9fa;
      color: #660000;
      transform: translateY(-2px);
    }

    /* Features Section */
    .features-section {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .feature-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      margin-bottom: 30px;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 3rem;
      color: #b30000;
      margin-bottom: 20px;
    }

    /* Specs Section */
    .specs-section {
      padding: 80px 0;
      background-color: white;
    }

    .spec-item {
      margin-bottom: 20px;
    }

    .spec-item h5 {
      color: #b30000;
      font-weight: 600;
    }

    /* Carousel */
    .carousel-item {
      height: 500px;
    }

    .carousel-item img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }

    .carousel-caption {
      background: rgba(0,0,0,0.7);
      border-radius: 10px;
      padding: 20px;
    }

    /* Navbar */
    .navbar-brand img {
      width: 32px;
      height: 32px;
    }
