 @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
    .slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease-in-out;
      z-index: 0;
    }

    .slide.active {
      opacity: 1;
      transform: translateY(0);
      z-index: 1;
    }

    .content {
      position: absolute; font-family: "Libre Baskerville", serif;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      animation: fadeUp 1s ease forwards;
      z-index: 2;
    }

    .content h1 {
      font-size: 2.5rem; font-family: "Libre Baskerville", serif;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .content p {
      font-size: 1.2rem; font-family: "Libre Baskerville", serif;
      margin-bottom: 20px;
    }

    .content a {
      display: inline-block; font-size: 1.5rem;
      padding: 12px 25px; letter-spacing:1px;
      background: #004a8b;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      border-radius: 30px;
      transition: 0.3s ease;
      position: relative;
      z-index: 3;
    }

    .content a:hover {
      background: #0078B7;
    }

    .navigation {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
      z-index: 4;
    }

    .navigation button {
      background: rgba(0, 74, 139, 0.2);
      border: 2px solid #fff;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      padding: 12px 20px;
      border-radius: 50%;
      backdrop-filter: blur(5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }

    .navigation button:hover {
      background: rgba(255, 186, 0, 0.9);
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0,0,0,0.4);
      border-color: #fff;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translate(-50%, -40%);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .content h1 {
        font-size: 1.8rem;
      }
      .content p {
        font-size: 1rem;
      }
    }