
body {
  background-color: #0f4b6f; 
  color: #fff; 
  font-family: 'Arial', sans-serif; 
  margin: 0;
  padding-top: 20px;
}


.navbar {
  background-color: #41a6e9b7; 
  padding: 10px 20px; 
}

.navbar-brand {
  color: #ffffff !important;
  font-size: 24px;
}

.logo-image {
  max-width: 100px;
  height: auto;
}

.navbar-divider {
  border-right: 1px solid #ffffff;
  height: 30px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 20px;
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: #ffffff;
  color: #0f4b6f !important;
  border-radius: 5px;
}


.container {
  background-color: #ffffff; 
  color: #000000;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
  max-width: 1200px; 
  margin: 0 auto;
}


h1, h2 {
  color: #0f4b6f;
  font-weight: bold;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}


p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}


.btn-primary {
  background-color: #0f4b6f;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #3498db; 
}

.content-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.content-box h3 {
  color: #41a6e9b7;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}


.iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

iframe {
  max-width: 100%;
  height: 500px; 
  border-radius: 8px;
}


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


input:focus, textarea:focus {
  outline: none;
  border-color: #0f4b6f;
}


.section-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 15px;
}


footer {
  background-color: #0f4b6f;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
}
.section-header {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #0f4b6f;
  text-decoration: underline; 
}


ul {
  list-style-type: disc; 
  padding-left: 20px; 
}

li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555; 
}


li strong {
  color: #0f4b6f; 
  font-weight: bold;
}


li:hover {
  color: #3498db;
  transition: color 0.3s ease;
}

.about-us-image {
  width: 100%; /* Ensures responsiveness */
  max-width: 250px; /* Limits the maximum size */
  border: 2px solid #030303; /* Adds a border */
  border-radius: 8px; /* Gives the border rounded corners */
  margin: 10px 0; /* Adds some spacing */
}