body {
      font-family: 'Segoe UI', sans-serif;
      background: #f1f4f9;
      margin: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    * {
  box-sizing: border-box;
}
    /*HERO*/

    .hero-section {
      width: 100%;
      height: 360px;
      background-image: url('./images/8.jpg'); /* replace with your image */
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);

    }

    .hero-overlay {
      background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 700px;
      color: white;
      text-align: center; /* <-- center the text */
    }

    .hero-title {
      font-size: 44px;
      font-weight: bold;
      margin-top: -20px;
    }

    .hero-desc {
      font-size: 20px;
      line-height: 1.5;
      max-width: 700px;
    }

    /* MOBILE VIEW */
    @media (max-width: 768px) {
      .hero-overlay {
        padding: 0 20px;
        text-align: center;
      }

      .hero-content {
        text-align: center;
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-desc {
        font-size: 16px;
      }
    }
    .privacy {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.7;
      background:none;
      color: #333;
      padding: 20px;
      max-width: 900px;
      margin: auto;
    }
    
    h1 {
      color: #00307c;
      padding-bottom: 10px;
      margin-bottom: 30px;
    }
    h2 {
      color: #00307c;
      margin-top: 40px;
      font-size: 1.4rem;
    }
    p {
      margin: 12px 0;
    }
    a {
      color: #00307c;
      text-decoration: none;
    }
