 body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: #222;
    }

    header {
      background: #fff;
      padding: 15px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    header nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }

    .hero {
      background: url('your-hero-image.jpg') center/cover no-repeat;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.4);
    }

    .hero h1 {
      position: relative;
      z-index: 2;
    }

    .content {
      padding: 60px 8%;
    }

    h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: #0c244a;
    }

    .intro {
      font-size: 1.1rem;
      margin-bottom: 40px;
    }

    .section {
      margin-bottom: 50px;
    }

    ul {
      margin: 20px 0;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }

    .highlight-box {
      background: #f4f6fa;
      padding: 25px;
      border-left: 5px solid #0c244a;
      margin-top: 30px;
    }

    footer {
      background: #0c244a;
      color: #fff;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
      font-size: 0.9rem;
    }

    /* Carousel Styles */
    .carousel {
      position: relative;
      max-width: 100%;
      margin: 40px 0;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .carousel img {
      width: 100%;
      height:50%;
      display: none;
      opacity: 0;
      transition: opacity 0.7s ease-in-out;
    }

    .carousel img.active {
      display: block;
      opacity: 1;
    }

    .carousel .caption {
      position: absolute;
      bottom: 15px;
      left: 20px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 8px 15px;
      border-radius: 4px;
      font-size: 0.9rem;
      opacity: 0;
      transition: opacity 0.7s ease-in-out;
    }

    .carousel .caption.show {
      opacity: 1;
    }

    .carousel button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 18px;
      border-radius: 50%;
    }

    .carousel button.prev {
      left: 10px;
    }

    .carousel button.next {
      right: 10px;
    }

    /* Dots */
    .dots {
      text-align: center;
      margin-top: 12px;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #0c244a;
    }