    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    
    body {
      background-color: #f5f5f5;
      color: #333;
    }
    
    header {
      height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }
    
    .header-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
    }
    
    header h1 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: "" 10px;
      position: relative;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    }
    
    header p {
      color: white;
      font-size: 1.2rem;
      position: relative;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    nav {
      background-color: #2c3e50;
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
    }
    
    nav ul li {
      margin: 0 15px;
    }
    
    nav ul li a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
      padding: 5px 10px;
      display: inline-block;
    }
    
    nav ul li a:hover {
      color: #f39c12;
    }
    
    nav ul li:first-child a {
      font-weight: bold;
      background-color: #F65058FF;
      border-radius: 4px;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
    }
    
    .tractor-image {
      flex: 1;
      padding: 20px;
    }
    
    .tractor-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-content {
      flex: 1;
      padding: 20px;
    }
    
    h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #2c3e50;
    }
    
    p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .services-container {
      background-color: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 60px;
    }
    
    .services-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 20px;
    }
    
    .service-item {
      flex-basis: 48%;
      margin-bottom: 15px;
      padding: 10px;
      background-color: #f9f9f9;
      border-radius: 5px;
    }
    
    .service-item h3 {
      color: #e74c3c;
      margin-bottom: 5px;
    }
    
    .slideshow-container {
      max-width: 1000px;
      position: relative;
      margin: 40px auto;
      overflow: hidden;
    }
    
    .mySlides {
      display: none;
      text-align: center;
    }
    
    .mySlides img {
      width: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
    
    .slide-caption {
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 15px;
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    
    footer {
      background-color: #2c3e50;
      color: white;
      text-align: center;
      padding: 30px 0;
      margin-top: 60px;
    }
    
    .contact-info {
      margin-bottom: 20px;
    }
    
    .contact-info p {
      margin: 5px 0;
    }
    
    .contact-info a button {
      padding: 10px 20px;
      background-color: #f39c12;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }
    
    .contact-info a {
      color: white;
    }
    
    .modal {
      display: block;
      /* Changed from none to block to always show */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }
    
    .modal-content {
      background-color: #fefefe;
      margin: 15% auto;
      padding: 30px;
      border-radius: 10px;
      width: 80%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .modal h2 {
      margin-bottom: 30px;
      color: #2c3e50;
    }
    
    .language-option {
      display: inline-block;
      margin: 0 15px;
      cursor: pointer;
      padding: 15px 30px;
      background-color: #f39c12;
      color: white;
      border-radius: 5px;
      font-size: 1.2rem;
      transition: all 0.3s;
    }
    
    .language-option:hover {
      background-color: #e67e22;
      transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
      header {
        height: 200px;
      }
      
      header h1 {
        font-size: 2rem;
      }
      
      header p {
        font-size: 1rem;
      }
      
      .about-section {
        flex-direction: column;
      }
      
      nav ul {
        flex-wrap: wrap;
      }
      
      nav ul li {
        margin: 8px;
      }
      
      .service-item {
        flex-basis: 100%;
      }
      
      .language-option {
        display: block;
        margin: 15px auto;
        width: 80%;
      }
    }
    
    .privacy-box {
      
      margin-top: 25px;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
    }
    
    .privacy-link {
      display: inline-block;
      padding: 8px 18px;
      font-size: 0.95rem;
      color: #f39c12;
      text-decoration: none;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }
    
    .privacy-link:hover {
      background: #f39c12;
      color: #2c3e50;
      box-shadow: 0 4px 12px rgba(243, 156, 18, 0.5);
      transform: translateY(-2px);
    }
    
    
    /* Privacy Consent Modal */
    #consentModal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
    }
    
    .consent-box {
      background: #fff;
      width: 90%;
      max-width: 480px;
      margin: 18% auto;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
    }
    
    .consent-box h3 {
      margin-bottom: 15px;
      color: #2c3e50;
    }
    
    .consent-box p {
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    
    .consent-box label {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    
    .consent-box button {
      padding: 10px 22px;
      background: #f39c12;
      color: #fff;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: not-allowed;
      opacity: 0.6;
    }
    
    .consent-box button.active {
      cursor: pointer;
      opacity: 1;
    }
