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

header {
  background-color: #95819e;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 70px;
}

.nav-buttons a {
  background-color: #fff;
  color: #003366;
  padding: 10px 15px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.nav-buttons a:hover {
  background-color: #e0e0e0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-height: 100px;
}

h1 {
  text-align: center;
  color: #003366;
}

h2 {
  color: #003366;
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: #003366;
  color: white;
}

form {
  margin-top: 40px;
}

label {
  display: block;
  margin-bottom: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.payment-button {
  display: block;
  width: 100%;
  background-color: #28a745;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}

    .testimonial-carousel {
      max-width: 800px;
      margin: 50px auto;
      text-align: center;
      background: #f0f0f0;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .testimonial {
      display: none;
    }
    .testimonial.active {
      display: block;
    }
    .testimonial p {
      font-style: italic;
    }
    .testimonial-author {
      margin-top: 10px;
      font-weight: bold;
    }
    .carousel-controls {
      margin-top: 20px;
    }
    .carousel-controls button {
      background-color: #003366;
      color: white;
      padding: 8px 16px;
      border: none;
      margin: 0 10px;
      border-radius: 5px;
      cursor: pointer;
    }
	
	
.fixed-bg {
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
z-index: -1;
}

.bg-cover {
background-position: center center;
background-size: cover;
}

.bg-cover-bottom {
background-size: cover !important;
background-position: left bottom !important;
background-repeat: no-repeat;
}

.bg-bottom-center {
background-repeat: no-repeat;
background-position: bottom center;
background-size: cover;
}

.bg-contain {
background-size: contain;
}

.bg-fixed {
background-attachment: fixed;
background-position: center top;
background-size: cover;
}

.bg-gray {
background-color: #f3f7fd;
}

.bg-gray-hard {
background-color: #d1eeec;
}

.bg-theme-small {
background-color: #edf5ff;
}

.bg-light {
background-color: #ffffff;
}

.bg-theme {
background-color: #086AD8;
}

.bg-light-gradient {
background: linear-gradient(90deg, rgba(244,247,252,1) 36%, rgba(255,255,255,1) 100%);
}

.gradient-bg {
background-image: linear-gradient(90deg, rgba(2,59,166,1) 0%, rgba(67,126,235,1) 100%);
background-color: #086AD8;
}

.container-md {
width: 90%;
margin: auto;
position: relative;
}

.text-italic {
font-style: italic;
}