
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    body {
      background: #fff;
      color: #1f2937;
    }
    header {
      position: sticky;
      top: 0;
      width: 100%;
      background: #ffffff;
      padding: 20px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.branding img {
  height: 40px;
  width: auto;
}

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #1f2937;
      font-weight: 600;
    }
    nav a.active, nav a:hover {
      color: #ff4c4c;
    }
    .hero {
      background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
      padding: 100px 20px;
    }
    .hero .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
    }
    .hero-content {
      flex: 1;
      min-width: 300px;
      padding-right: 40px;
    }
    .hero-content h1 {
      font-size: 3rem;
      color: #1f2937;
      margin-bottom: 20px;
      font-weight: 800;
    }
    .hero-content p {
      font-size: 1.2rem;
      color: #4b5563;
      margin-bottom: 30px;
      max-width: 600px;
    }
    .cta-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background-color: #ff4c4c;
      color: white;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(255, 76, 76, 0.3);
      transition: background 0.3s ease;
    }
    .btn-primary:hover {
      background-color: #e53935;
    }
    .btn-secondary {
      background-color: #ffffff;
      color: #ff4c4c;
      border: 2px solid #ff4c4c;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .btn-secondary:hover {
      background-color: #ff4c4c;
      color: white;
    }
    .offer-label {
      margin-top: 20px;
      font-size: 1rem;
      color: #b91c1c;
      font-weight: bold;
    }
      .content-image img {
  max-width: 280px;
  width: 60%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


    section.content {
      max-width: 1100px;
      margin: 80px auto;
      padding: 0 20px;
    }
    section.content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    section.content p,
    section.content li {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #4b5563;
    }
    ul {
      padding-left: 20px;
    }


