 :root {
        --primary-dark: #000000;
        --primary-gray: #333333;
        --secondary-gray: #666666;
        --light-gray: #999999;
        --bg-light: #f5f5f5;
        --border-gray: #e0e0e0;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--primary-dark);
        background-color: #ffffff;
      }

      /* Navbar Styles */
      .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary-dark) !important;
      }

      .navbar-nav .nav-link {
        color: var(--secondary-gray) !important;
        font-weight: 500;
        margin: 0 15px;
        transition: color 0.3s ease;
        position: relative;
      }

      .navbar-nav .nav-link:hover {
        color: var(--primary-dark) !important;
      }

      .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-dark);
        transition: width 0.3s ease;
      }

      .navbar-nav .nav-link:hover::after {
        width: 100%;
      }

      /* Hero Section */
      .hero-section {
        background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 20s infinite linear;
      }

      @keyframes float {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .hero-content p {
        font-size: 1.25rem;
        color: var(--secondary-gray);
        margin-bottom: 30px;
      }

      .search-box {
        background: white;
        border-radius: 50px;
        padding: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
      }

      .search-box input {
        border: none;
        outline: none;
        flex: 1;
        padding: 15px 20px;
        font-size: 1rem;
      }

      .search-box button {
        background: var(--primary-dark);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .search-box button:hover {
        background: var(--primary-gray);
        transform: translateY(-2px);
      }

      /* Category Section */
      .category-section {
        padding: 80px 0;
      }

      .category-card {
        background: white;
        border: 1px solid var(--border-gray);
        border-radius: 15px;
        padding: 40px 20px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        height: 100%;
      }

      .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-dark);
      }

      .category-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-dark);
      }

      /* Product Section */
      .product-section {
        padding: 80px 0;
        background: var(--bg-light);
      }

      .product-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .product-image {
        position: relative;
        overflow: hidden;
        height: 250px;
      }

      .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .product-card:hover .product-image img {
        transform: scale(1.1);
      }

      .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-dark);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 600;
      }

      .product-info {
        padding: 20px;
      }

      .product-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .product-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 15px;
      }

      .product-price span {
        font-size: 0.875rem;
        color: var(--light-gray);
        font-weight: 400;
      }

      .product-features {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
      }

      .product-features li {
        color: var(--secondary-gray);
        font-size: 0.875rem;
        margin-bottom: 5px;
      }

      .product-features li i {
        color: var(--primary-dark);
        margin-right: 8px;
      }

      .btn-rent {
        background: var(--primary-dark);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
      }

      .btn-rent:hover {
        background: var(--primary-gray);
        transform: translateY(-2px);
      }

      /* Features Section */
      .features-section {
        padding: 80px 0;
      }

      .feature-box {
        text-align: center;
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s ease;
      }

      .feature-box:hover {
        background: var(--bg-light);
      }

      .feature-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        background: var(--bg-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: var(--primary-dark);
        transition: all 0.3s ease;
      }

      .feature-box:hover .feature-icon {
        background: var(--primary-dark);
        color: white;
      }

      /* Testimonial Section */
      .testimonial-section {
        padding: 80px 0;
        background: var(--bg-light);
      }

      .testimonial-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
      }

      .testimonial-content {
        font-style: italic;
        color: var(--secondary-gray);
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
      }

      .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
      }

      .author-info h5 {
        margin: 0;
        font-weight: 600;
      }

      .author-info p {
        margin: 0;
        color: var(--light-gray);
        font-size: 0.875rem;
      }

      /* Contact Section */
      .contact-section {
        padding: 80px 0;
      }

      .contact-info {
        background: var(--bg-light);
        padding: 40px;
        border-radius: 15px;
        height: 100%;
      }

      .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-dark);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        font-size: 1.25rem;
      }

      .contact-form .form-control {
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .contact-form .form-control:focus {
        border-color: var(--primary-dark);
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
      }

      /* Footer */
      footer {
        background: var(--primary-dark);
        color: white;
        padding: 50px 0 30px;
      }

      .footer-links h5 {
        font-weight: 600;
        margin-bottom: 20px;
      }

      .footer-links ul {
        list-style: none;
        padding: 0;
      }

      .footer-links ul li {
        margin-bottom: 10px;
      }

      .footer-links ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links ul li a:hover {
        color: white;
      }

      .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        background: white;
        color: var(--primary-dark);
      }

      /* Responsive */
      @media (max-width: 768px) {
        .hero-content h1 {
          font-size: 2.5rem;
        }

        .search-box {
          flex-direction: column;
          border-radius: 15px;
        }

        .search-box input {
          width: 100%;
          margin-bottom: 10px;
        }

        .search-box button {
          width: 100%;
        }
      }