

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Header styles */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 95%;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            color: white;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }
        nav ul li a:hover {
          color: #212f64;
          border-bottom: 5px solid #c32134;
        }
        nav ul li a.active {
          color: #212f64;
          border-bottom: 5px solid #c32134;
        }

        /* Slider styles */
        .slider-container {
            position: relative;
            width: 100%;
            height: 900px;
            overflow: hidden;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 1s ease-in-out;
        }
        .slider {
            min-width: 100%;
            height: 900px;
            position: relative;
        }
        .slider img {
            width: 100%;
            height: 900px;
            object-fit: cover;
        }
        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }
        .slider-content h1 {
            margin: 0;
            font-size: 32px;
        }
        .slider-content p {
            margin: 10px 0 0;
            font-size: 16px;
        }

        /* Navigation buttons */
        .slider-nav {
            position: absolute;
            top: 55%;
            width: 95%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            margin:0px 20px;
        }
        .slider-nav img {
          width: 30px;
        }
        .slider-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
        }
        .slider-nav button:hover {
            background-color: rgba(255, 255, 255, 0.7);
            color: black;
        }
        
        .logo img {
          width: 140px;
        }



@media only screen and (max-width: 600px) {
  body {
    background-color: #212f64;
  }
  header {
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(187,194,212,1) 49%, rgba(62,83,130,1) 100%); 
}
  .logo img {
  width: 70px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
}
nav {
  text-align: center;
  margin: auto;
}

        .slider-container {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            top: 95px;
        }

        .slider {
            min-width: 100%;
            height: auto;
            position: relative;
        }
        .slider img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        .slider-nav {top: 90%;   width: 90%;}
        
        
        .slider-content {
            position: absolute;
            top: 50%;
            left: 40%;
            transform: translate(-40%, -50%);
            color: white;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }
        .slider-content h1 {
            margin: 0;
            font-size: 25px;
        }
        .slider-content p {
            margin: 10px 0 0;
            font-size: 16px;
        }
        .slider-content a {color: red;}
}