*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  border: none;
}

html,
body,
main {
  width: 100% !important;
  height: auto;
  background-color: #ffffff;
  overflow-x: hidden;
  /* font-size: 20px; */
}

section.letter {
  /* box-shadow: 10px 2px 10px black; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}
.letter-image {
  width: 100%;
  padding: 0 !important;
  position: relative;
  height: 500px;
}
.letter-image img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  position: relative;
  height: 100%;
  /* filter: brightness(0.5); */
}
.letter-text{
  margin-top: 20px;
  padding: 0 12px;
  box-shadow: -13px 3px 10px 0px rgba(0, 0, 0, 0.5);
}
.letter-image h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-weight: bold;
  text-shadow: 1px 2px 1px black;
  -webkit-text-stroke: 1px black;
  font-size: 5vw; /* Responsive font size */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .footer-container{
    display: flex;
    flex-direction: column;
    border: none;
  }
  .footer-container h3{
    border-bottom: none!important;
  }
  .footer-container > *{
    border-top: none!important;
    border-bottom: none!important;
    margin-top: 10px;
  }
  .letter-image {
    height: 300px;
  }
  .letter-image h2 {
      font-size: 7vw; /* Larger font size for tablets */
  }
}

@media (max-width: 480px) {
  .letter-image img{
    object-position: right;
  }
  .letter-image h2 {
      font-size: 9vw; /* Even larger font size for mobile */
  }
}



footer {
  background-color: #020656;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  max-width: 150px;
}

.footer-container h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #22287c;
  padding-bottom: 10px;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin: 8px 0;
}

.footer-container a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container a:hover {
  color: #f0f0f0;
}

.social-media ul {
  display: flex;
  padding: 0;
}

.social-media li {
  margin-right: 4px!important;
}

.social-media a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}