/* Preloader styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #140373; /* Dark blue background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: flashEffect 1.5s infinite;
}

@keyframes flashEffect {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

.logo {
  width: 200px; /* Adjust logo size */
  height: auto;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .logo {
    width: 150px; /* Adjust logo size for mobile */
  }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
  overflow: auto; /* Enable scroll if needed */
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
    border-radius: 0;
    position: relative;
}

.closed {
    position: fixed !important;      /* Fixed position */
    top: 20px !important;            /* Distance from the top of the screen */
    right: 20px !important;          /* Distance from the right side */
    font-size: 2rem !important;      /* Larger font size for the close icon */
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #000 !important;
    text-shadow: 0 1px 0 #fff !important;
    opacity: 0.8 !important;         /* Slightly higher opacity */
    z-index: 9999 !important;        /* Ensure the icon stays on top of other elements */
    cursor: pointer !important;     /* Change the cursor to indicate it's clickable */
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Link styling */
a {
  text-decoration: none;
  color: #0066cc;
  cursor: pointer;
}

a:hover {
  color: #004b8b;
}

h1, h2 {
	color: #003366;
}
h3 {
	margin-top: 20px;
}
.content {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left !important;
}
ul {
	padding-left: 20px;
}
li {
	margin-bottom: 10px;
}
.section {
	margin-bottom: 30px;
}
.section p {
	margin: 10px 0;
}