/* --- Base Styles (Mobile/Small Screen Defaults) --- */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f4f8;
}

.header {
  background-color: #003366;
  color: white;
  padding: 15px;
  text-align: center;
}

.top-bar {
  background-color: #f26522;
  color: white;
  padding: 8px;
  text-align: center;
  font-size: 13px;
}

.logo-bar {
  display: flex;
  flex-direction: column; /* Stacked on mobile */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  gap: 10px;
}

.logo-bar img {
  height: 35px;
}

.content {
  padding: 30px 15px;
  margin-top: 30px;
  text-align: center;
  margin-bottom: 50px; /* Space for fixed footer */
}

.content h1 {
  color: #003366;
  font-size: 24px;
}

.content p {
  font-size: 14px;
  color: #333;
  margin-top: 15px;
}

.footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* --- Tablet Styles (768px and up) --- */
@media screen and (min-width: 768px) {
  .logo-bar {
    flex-direction: row; /* Side-by-side on tablet */
  }

  .logo-bar img {
    height: 45px;
  }

  .content {
    padding: 60px 20px;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 18px;
  }
}

/* --- Desktop/Big Screens (1024px and up) --- */
@media screen and (min-width: 1024px) {
  .content {
    max-width: 1100px;
    margin: 0 auto; /* Centers the content container */
    margin-top: 10px;
    padding: 80px 40px;
  }

  .content h1 {
    font-size: 36px;
  }

  .content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .logo-bar img {
    height: 55px;
  }
}

/* --- Ultra-Wide Screens (1440px and up) --- */
@media screen and (min-width: 1440px) {
  .content {
    max-width: 1300px;
    margin-top: 100px;
  }

  .content h1 {
    font-size: 48px;
  }
  .content p {
    font-size: 24px;
    line-height: 1.6;
  }
}
