body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #0d47a1;
      color: white;
    }

    .container {
      max-width: 800px;
      margin: 40px auto;
      padding: 30px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.4);
      border: 2px solid rgba(255, 255, 255, 0.2);
      z-index: 1;
    }

    /* Transparent background image */
    .container::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("bg\ image.png") no-repeat center;
      background-size: cover;
      opacity: 0.15;
      z-index: 0;
    }

    /* All content layered on top */
    .container * {
      position: relative;
      z-index: 1;
    }

    .logo {
      text-align: center;
      margin-bottom: 20px;
    }
    h1 {
      text-align: center;
      font-size: 28px;
    }
    .tagline {
      text-align: center;
      font-size: 18px;
      margin-bottom: 20px;
    }
    .section {
      margin-bottom: 25px;
      font-size: 16px;
      line-height: 1.6;
    }
    .why ul {
      list-style: disc;
      margin-left: 20px;
    }
    .button-row {
      display: flex;
      justify-content: space-around;
      margin: 20px 0;
    }
    .button {
      background: #1976d2;
      padding: 10px 25px;
      border-radius: 25px;
      font-weight: bold;
    }
    .contact {
      text-align: center;
      margin-top: 20px;
    }
    .contact a {
      color: #fff;
      text-decoration: none;
      display: block;
      margin: 10px 0;
    }
    .footer {
      text-align: center;
      background: rgba(255,255,255,0.1);
      padding: 10px;
      border-radius: 10px;
      margin-top: 30px;
    }