
    body {
      background: #f5f5f5;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/hero/toyotakl.webp') center center no-repeat;
      background-size: cover;
      color: white;
      padding: 100px 20px;
      text-align: center;
    }
    
	header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    footer {
      background-color: #0c1bc4;
      color: white;
      padding: 2rem 1rem;
      margin-top: 4rem;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .menu-container {
      position: relative;
      display: inline-block;
    }

    .menu-button {
      font-weight: bold;
      cursor: pointer;
      padding: 10px;
      background-color: white;
      border: none;
      font-size: 16px;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 6px;
      min-width: 150px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .submenu div {
      padding: 10px;
      cursor: pointer;
    }

    .submenu div:hover {
      background-color: #f0f0f0;
    }

    .logo img {
      height: 25px;
    }
    
    .tunasfriend img {
      height: 75px;
    }

    nav {
      display: flex;
      align-items: center;
    }

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

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      transition: color 0.3s;
      position: relative;
    }

    nav ul li a.active {
      color: red;
    }

    nav ul li a:hover {
      color: #e60000;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

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

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

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

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

    /* Promo Section Styles */
    .promo-section {
      background: linear-gradient(135deg, #e30613 0%, #b5000c 100%);
      color: white;
      padding: 30px 20px;
      text-align: center;
      border-radius: 10px;
      margin: 30px auto;
      max-width: 1200px;
    }
    
    .promo-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    
    .promo-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
    
    .promo-item {
      background: rgba(255, 255, 255, 0.2);
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
    }
    
    /* Slideshow Styles */
    .home-slideshow .slideshow-container {
      max-width: 1000px;
      position: relative;
      margin: 30px auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .mySlides {
      display: none;
    }
    
    .mySlides img {
      width: 100%;
      vertical-align: middle;
      border-radius: 10px;
    }
    
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -22px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background-color: rgba(0,0,0,0.5);
    }
    
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    
    .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.8);
    }
    
    /* Recommendation Section */
    .recommendation-section {
      padding: 40px 20px;
      background: white;
      border-radius: 10px;
      margin: 30px auto;
      max-width: 1200px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .recommendation-section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 10px;
      color: #333;
    }
    
    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 20px 0 30px;
    }
    
    .filter-btn {
      padding: 8px 20px;
      border: 2px solid #e30613;
      background: white;
      color: #e30613;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s;
    }
    
    .filter-btn.active, .filter-btn:hover {
      background: #e30613;
      color: white;
    }
    
    .car-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
    }
    
    .car-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .car-card:hover {
      transform: translateY(-5px);
    }
    
    .car-image {
      height: 200px;
      overflow: hidden;
    }
    
    .car-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .car-card:hover .car-image img {
      transform: scale(1.05);
    }
    
    .car-info {
      padding: 20px;
    }
    
    .car-info h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #333;
    }
    
    .price {
      display: block;
      font-weight: bold;
      color: #e30613;
      margin-bottom: 15px;
      font-size: 18px;
    }
    
    .car-features {
      list-style: none;
      margin-bottom: 20px;
    }
    
    .car-features li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      color: #666;
    }
    
    .car-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #e30613;
    }
    
    .learn-more {
      display: inline-block;
      padding: 10px 20px;
      background: #e30613;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s;
    }
    
    .learn-more:hover {
      background: #b5000c;
    }
    
    /* Social Bar */
    .social-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .social-bar a {
      text-align: center;
      font-size: 12px;
      color: #333;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .social-bar i {
      font-size: 20px;
      margin-bottom: 5px;
    }
    
    .social-media a {
      display: inline-block;
      margin-right: 15px;
    }

    .social-media img {
      width: 38px;
      height: 38px;
      filter: invert(1);
      transition: filter 0.3s ease;
    }

    .social-media img:hover {
      filter: invert(0.5);
    }
    
    .kontak-icon:hover {
      background-color: #1ebea5;
    }
    
    .whatsapp-button {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background-color: #25D366;
      border-radius: 50%;
      padding: 15px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s;
    }
    
    .whatsapp-button:hover {
      transform: scale(1.1);
    }
    
    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }
    
   
    /* Responsive Styles */
    @media (max-width: 768px) {
      header {
        padding: 10px 15px;
      }
      
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
      }
      
      nav ul.show {
        display: flex;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .hero-section {
        padding: 60px 15px;
      }
      
      .promo-list {
        flex-direction: column;
        align-items: center;
      }
      
      .filter-buttons {
        gap: 5px;
      }
      
      .filter-btn {
        padding: 6px 12px;
        font-size: 14px;
      }
      
      .car-grid {
        grid-template-columns: 1fr;
      }
      
      .social-bar {
        padding: 8px 0;
      }
      
      .social-bar a {
        font-size: 10px;
      }
      
      .social-bar i {
        font-size: 18px;
      }
      
      footer > div {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      
      .social-media {
        margin-top: 15px;
      }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
      .car-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }
    
    @keyframes fade {
      from {opacity: .4}
      to {opacity: 1}
    }
  