    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #1057a1;
      color: white;
      text-align: center;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Carousel */
    .carousel {
      position: relative;
      width: 100%;
      height: 60vh;
      overflow: hidden;
    }

    .carousel img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .carousel img.active {
      opacity: 1;
    }

    /* Optional title overlay */
    .hero-text {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.45);
      padding: 14px 20px;
      border-radius: 6px;
      font-size: 22px;
      font-weight: bold;
    }

    main {
      /* flex: 1; */
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    /* Footer */
    footer {
      padding: 30px 20px;
      background-color: #00162d;
      text-align: center;
    }

    .buttons {
      margin-top: 20px;
    }

    .buttons a {
      display: inline-block;
      margin: 8px 10px;
      padding: 12px 20px;
      color: #0a316f;
      background-color: #8ccbf5;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
    }

    .buttons a:hover {
      background-color: #ddd;
    }

    .buttons2 a {
      display: inline-block;
      margin: 20px 40px;
      padding: 18px 106px;
      color: #0a316f;
      background-color: #8ccbf5;
      text-decoration: none;
      font-weight: bold;
      border-radius: 45px;
      text-align:center;
      font-size: large;
    }

    .buttons2 a:hover {
      background-color: #ddd;
    }

    .buttons3 a{
        background-color: #d98622;
    }

    .buttons4 {
        background-color: #1057a1;
        padding: 0px;
        color:beige;
        margin: 20px;
    }