
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #222;
      background-color: #f7f7f7;
      line-height: 1.6;
    }

    /* Hero Section */
    .bg {
      background: url("../image/banner3-6.jpg") center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      position: relative;
    }

    .bg::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .container {
      z-index: 2;
      position: relative;
      padding: 40px;
      max-width: 800px;
    }

    h1 {
      font-size: 3rem;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    h2 {
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: 25px;
      text-transform: uppercase;
    }

    .description {
      font-size: 1rem;
      margin-top: 5px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }

    /* About Section */
    .about {
      background: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .about h3 {
      font-size: 2rem;
      color: #333;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .about p {
      color: #555;
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Footer */
    footer {
      background: #111;
      color: #ccc;
      text-align: center;
      padding: 20px 0;
      font-size: 0.9rem;
    }

    footer a {
      color: #0fccce;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }