
/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f7fa;
  color: #333;
}

header {
  background-color: #003366;
  padding: 20px 0;
  color: white;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

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

.hero {
  background-color: #0055a5;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

section {
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

/* === Home Section Adjustments === */
.hero {
  background-color: #0055a5;
  color: white;
  padding: 80px 20px;
  text-align: left; /* Change from center to align with logo */
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-wrapper {
  flex: 0 0 auto;
}

.logo-wrapper img {
  height: 150px;
  width: auto;
}

.home-text {
  flex: 1;
  font-size: 1.6em;
  line-height: 1.4;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .logo-wrapper img {
    height: 120px;
  }

  .home-text {
    font-size: 1.3em;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-wrapper {
  flex: 0 0 auto;
}

.logo-wrapper img {
  height: 150px;
  width: auto;
}

.home-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line1 {
  font-size: 2.2em;
  margin: 0;
}

.line2 {
  font-size: 3em;
  font-weight: bold;
  margin: 0;
}

.subtitle {
  font-size: 1.4em;
  margin-top: 10px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .logo-wrapper img {
    height: 120px;
  }

  .line1, .line2 {
    font-size: 2em;
  }

  .subtitle {
    font-size: 1.2em;
  }
}

