    body, html {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    /* Hero Section */
    .hero-home {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(249,154,33,0.6)),
                  url('images/hero-bg.jpg') no-repeat center center/cover;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero-home-content {
      max-width: 950px;
      animation: fadeInUp 1s ease-in-out;
    }

    .hero-home-content h1 {
      font-size: 3.2rem;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.3;
    }

    .hero-home-content h1 span {
      color: #f99a21;
    }

    .hero-home-content p {
      font-size: 1.2rem;
      margin-bottom: 35px;
      line-height: 1.8;
      color: #f1f1f1;
    }

    .hero-home-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 30px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn.primary {
      background: #f99a21;
      color: #fff;
    }

    .btn.primary:hover {
      background: #d87d12;
    }

    .btn.secondary {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
    }

    .btn.secondary:hover {
      background: #fff;
      color: #333;
    }

    /* Features Section */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 60px 20px;
      text-align: center;
      background: #f9f9f9;
    }

    .feature-box {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-10px);
    }

    .feature-box h3 {
      color: #f99a21;
      margin-bottom: 10px;
    }

    /* Animation */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .hero-hero-content h1 {
        font-size: 2.2rem;
      }

      .hero-home-content p {
        font-size: 1rem;
      }
    }