* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f6f8;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  color: white;
  padding: 30px 0;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.hero {
  background: url('images/hero-background.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.section {
  padding: 50px 20px;
  background-color: white;
}

.section.gray {
  background-color: #e7f0f7;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #0077b6;
}

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

footer {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

.green-text {
  color: #2e7d32;
}

.white-stroke {
  text-shadow:
    -1px -1px 2px #fff,
     1px -1px 2px #fff,
    -1px  1px 2px #fff,
     1px  1px 2px #fff;
}

.white-text {
  color: white;
}

.green-stroke {
  text-shadow:
    -1px -1px 1px #2e7d32,
     1px -1px 1px #2e7d32,
    -1px  1px 1px #2e7d32,
     1px  1px 1px #2e7d32;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  gap: 20px;
}

.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.motion-title {
  animation: float-text 3s ease-in-out infinite;
}

@keyframes float-text {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.wave-text span {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) { animation-delay: 0.00s; }
.wave-text span:nth-child(2) { animation-delay: 0.05s; }
.wave-text span:nth-child(3) { animation-delay: 0.10s; }
.wave-text span:nth-child(4) { animation-delay: 0.15s; }
.wave-text span:nth-child(5) { animation-delay: 0.20s; }
.wave-text span:nth-child(6) { animation-delay: 0.25s; }
.wave-text span:nth-child(7) { animation-delay: 0.30s; }
.wave-text span:nth-child(8) { animation-delay: 0.35s; }
.wave-text span:nth-child(9) { animation-delay: 0.40s; }
.wave-text span:nth-child(10) { animation-delay: 0.45s; }
.wave-text span:nth-child(11) { animation-delay: 0.50s; }
.wave-text span:nth-child(12) { animation-delay: 0.55s; }
.wave-text span:nth-child(13) { animation-delay: 0.60s; }
.wave-text span:nth-child(14) { animation-delay: 0.65s; }
.wave-text span:nth-child(15) { animation-delay: 0.70s; }
.wave-text span:nth-child(16) { animation-delay: 0.75s; }
.wave-text span:nth-child(17) { animation-delay: 0.80s; }
.wave-text span:nth-child(18) { animation-delay: 0.85s; }
.wave-text span:nth-child(19) { animation-delay: 0.90s; }
.wave-text span:nth-child(20) { animation-delay: 0.95s; }
.wave-text span:nth-child(21) { animation-delay: 1.00s; }
.wave-text span:nth-child(22) { animation-delay: 1.05s; }
.wave-text span:nth-child(23) { animation-delay: 1.10s; }
.wave-text span:nth-child(24) { animation-delay: 1.15s; }
.wave-text span:nth-child(25) { animation-delay: 1.20s; }
.wave-text span:nth-child(26) { animation-delay: 1.25s; }
.wave-text span:nth-child(27) { animation-delay: 1.30s; }

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  nav {
    display: flex;
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
  }
}
.container-wide {
  max-width: 1300px;
  margin: auto;
  padding: 40px 30px;
}

.news-section {
  padding: 60px 20px;
  background-color: #fff;
}

.news-section h2 {
  margin-bottom: 30px;
  color: #0077b6;
  font-size: 2rem;
}