body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f4f6;
  color: #222;
}

header {
  background-color: #aacaec;
  color: white;
  padding: 0rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.blue-shape {
  position: absolute;
  width: 200px;
  height: 180px;
  background-color: #57a8ff;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.logo {
  z-index: 1;
  object-fit: fill;
  width: 120px;
  height: auto;
}

.header-title-container {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px 0 0 8px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: #012348;
}

.language-select {
  margin-top: 0.5rem;
}

.language-select select {
  padding: 0.4rem 0.6rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
}

.top-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0,0,0,0));
}

section {
  padding: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background-color: #aacaec;
  padding: 0.75rem 1rem;
  color: #012348;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.card:nth-child(even) {
  background-color: #e6f2ff;
}

.card img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.card h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.card ul {
  padding-left: 1.25rem;
}

.card button {
  padding: 0.5rem 1rem;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.card button:hover {
  background-color: #0056b3;
}

.button-container {
  text-align: center;
  margin-top: 1.5rem;
}

button {
  padding: 10px 20px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #27ae60;
}

.more-button:hover {
  background-color: #002f61;
}

.hidden {
  display: none;
}

.faded {
  opacity: 0.5;
}

.contact-card {
  background-color: #f0f9ff !important;
  text-align: center;
  font-size: 1rem;
  color: #012348;
}

footer {
  background-color: #e3f0fa;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  margin-top: 2rem;
  border-top: 1px solid #ccc;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-title-container {
    margin-top: 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .language-select {
    width: 100%;
    margin-top: 0.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .card {
    padding: 1rem;
  }
}
