/* ========================
       Hero Section
    ========================= */
    .hero {
      position: relative;
      height: 55vh !important;
      overflow: hidden;
    }
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(60%);
    }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    .hero-text p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ========================
       Product Info Section
    ========================= */
    .product-info {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }
    .product-info h2 {
      color: #0057b8;
      margin-bottom: 1rem;
    }
    .product-info p {
      line-height: 1.8;
      color: #444;
      margin-bottom: 1.5rem;
    }

    /* ========================
       Benefits
    ========================= */
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .benefit-card {
      background: #f8faff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-5px);
      background: #e6f0ff;
    }
    .benefit-card h3 {
      color: #0057b8;
      margin-bottom: 0.5rem;
    }
    .benefit-card p {
      color: #333;
      font-size: 0.95rem;
    }

    /* ========================
       Contact Section
    ========================= */
    .contact-section {
      background: linear-gradient(135deg, #0057b8, #1e293b);
      color: white;
      text-align: center;
      padding: 4rem 2rem;
    }
    .contact-section h2 {
      margin-bottom: 1rem;
      font-size: 2rem;
    }
    .contact-section p {
      font-size: 1rem;
      max-width: 650px;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }
    .contact-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .contact-buttons a {
      background: #fff;
      color: #0057b8;
      padding: 1rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .contact-buttons a:hover {
      background: #0a84ff;
      color: #fff;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      .hero-text p {
        font-size: 1rem;
      }
    }