
    /* Brand Colors */
    :root {
      --yellow: #FFC400;
      --dark-blue: #002D62;
      --red: #D0021B;
      --orange: #FF6B00;
      --dark-orange: #E65100;
      --cyan-blue: #1E88E5;
      --white: #FFFFFF;
      --text-dark: #222;
      --text-light: #555;
      --dark: #001a3d;
    }

    /* Reset & Base */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
      width: 100%;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: var(--dark-blue);
    }

    h1, h2, h3 {
      line-height: 1.3;
    }

    /* Container */
    .about-container {
      max-width: 1200px;
     margin: 20px auto;
     flex: 1;
     padding: 20px;
    }

    /* Hero */
    .about-hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--dark-blue), var(--cyan-blue));
      color: white;
      border-radius: 20px;
      margin-bottom: 50px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .about-hero h1 {
      font-size: 3.2rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .about-hero p {
      font-size: 1.3rem;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Sections */
     .about-section {
 
  background: #f9f9f9;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.safety-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.safety-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.safety-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #d63031;
}
.safety-card ul {
  list-style: disc inside;
  padding-left: 0;
}

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      border-top: 4px solid var(--dark-blue);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      background: linear-gradient(135deg, var(--dark-orange), var(--orange));
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      color: white;
      border-radius: 50%;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      color: var(--dark-orange);
      margin-bottom: 15px;
    }

    .feature-card p {
      font-size: 1rem;
      color: var(--text-light);
    }

    /* Delivery Section */
    .delivery-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .benefit-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .benefit-icon {
      background: var(--cyan-blue);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .benefit-content h3 {
      font-size: 1.3rem;
      color: var(--dark-blue);
      margin-bottom: 10px;
    }

    /* Services Section */
    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .service-header {
      background: linear-gradient(135deg, var(--dark-blue), var(--cyan-blue));
      color: white;
      padding: 25px;
      text-align: center;
    }

    .service-header i {
      font-size: 50px;
      margin-bottom: 15px;
    }

    .service-header h3 {
      font-size: 1.6rem;
    }

    .service-body {
      padding: 30px;
    }

    .service-body ul {
      list-style: none;
      padding-left: 20px;
    }

    .service-body li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 30px;
    }

    .service-body li:before {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--orange);
    }

    /* Process Section */
    .process-container {
      background: linear-gradient(135deg, var(--dark-orange), var(--orange));
      color: white;
      padding: 60px 20px;
      border-radius: 20px;
      text-align: center;
    }

    .process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .process-step {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 30px;
      width: 220px;
      backdrop-filter: blur(5px);
      position: relative;
    }

    .process-step-number {
      position: absolute;
      top: -15px;
      left: -15px;
      width: 40px;
      height: 40px;
      background: var(--yellow);
      color: var(--dark-blue);
      font-weight: bold;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .process-step i {
      font-size: 40px;
      margin-bottom: 15px;
      color: var(--yellow);
    }

    .process-step h3 {
      font-size: 1.2rem;
      margin: 10px 0;
    }

    /* Referral Program Section */
    
        /* Level System */
        .level-system {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin: 60px 0;
            overflow: hidden;
        }

        .level-header {
            background: linear-gradient(to right, var(--dark-blue), var(--dark));
            color: whitesmoke;
            padding: 25px;
            text-align: center;
        }

        .level-header h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .level-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .level-body {
            padding: 40px 50px;
        }

        /* Level Indicator */
        .level-indicator {
            display: flex;
            justify-content: space-between;
            margin: 40px 0 60px;
            position: relative;
        }

        .level-indicator::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50px;
            right: 50px;
            height: 6px;
            background: linear-gradient(to right, var(--yellow), var(--orange));
            z-index: 1;
            border-radius: 3px;
        }

        .level-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .level-circle {
            background: white;
            border: 4px solid var(--yellow);
            color: var(--dark-blue);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.4rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .level-step.active .level-circle {
            background: var(--yellow);
            border-color: var(--dark-blue);
            transform: scale(1.1);
        }

        .level-name {
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 1rem;
            background: rgba(0, 45, 98, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
        }

        .level-step.active .level-name {
            background: var(--dark-blue);
            color: white;
        }

        /* Referral Table */
        .referral-table-container {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .referral-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .referral-table th {
            background: var(--orange);
            color: white;
            padding: 18px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
        }

        .referral-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .referral-table tr:nth-child(even) {
            background-color: rgba(0, 45, 98, 0.03);
        }

        .referral-table tr:hover {
            background-color: rgba(30, 136, 229, 0.05);
        }

        .level-column {
            font-weight: 700;
            color: var(--dark-blue);
        }

        .bonus-highlight {
            color: var(--orange);
            font-weight: 700;
            display: block;
            margin: 5px 0;
        }


    /* CTA Section */
    .cta-container {
      text-align: center;
      padding: 60px 40px;
      background: linear-gradient(135deg, var(--dark-blue), var(--dark));
      color: white;
      border-radius: 20px;
      margin: 60px 0;
    }

    .cta-container h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta-button {
      display: inline-block;
      background: var(--dark-orange);
      color: white;
      padding: 16px 45px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .cta-button:hover {
      
      transform: translateY(-5px);
    }

    .referral-cta-button {
      background: var(--yellow);
      color: var(--dark-blue);
      padding: 16px 45px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      display: inline-block;
      margin-top: 30px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .referral-cta-button:hover {
      background: #ffd700;
      transform: translateY(-5px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .about-container {
        padding: 0;
     margin: 20px 8px;
    }
    
        .level-body {
            padding: 40px 10px;
        }
      .about-hero h1 {
        font-size: 2.2rem;
      }

      .about-hero p {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .safety-content {
        padding: 25px;
      }

      .process-step, .referral-card {
        width: 100%;
      }
      
      .referral-table {
        display: block;
        overflow-x: auto;
      }
      
       .level-indicator {
                flex-wrap: wrap;
                gap: 20px;
            }

            .level-indicator::before {
                display: none;
            }

            .level-step {
                flex: 0 0 calc(50% - 20px);
                margin-bottom: 30px;
            }

            .level-header h2 {
                font-size: 1.8rem;
            }
    }
  
     @media (max-width: 480px){
      .about-container {
     margin: 20px 5px;
     padding: 0;
    }
    
        .level-body {
            padding: 40px 2px;
        }
     }