/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background-color: #002f5f;
  padding: 15px 0;
  color: white;
}

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

.logo {
  height: 156px;
  max-width: 600px;
}

#menu-toggle {
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  display: none;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-weight: 600;
  padding: 6px 10px;
}

nav a:hover {
  background: #00b383;
  color: white;
  border-radius: 4px;
}

/* Hero Section */
.hero-block {
  background: linear-gradient(to right, #002f5f, #004d99);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-block h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.hero-block p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
  text-align: center;
}

.btn.primary {
  background-color: #00b383;
  color: white;
}

.btn.secondary {
  background-color: white;
  color: #004c97;
  border: 2px solid #004c97;
}

.btn:hover {
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 60px 20px;
  background-color: white;
}

.section.alt {
  background-color: #f0f4f8;
}

h2 {
  font-size: 28px;
  color: #002f5f;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  color: #004c97;
  margin-bottom: 10px;
}

/* Cards */
.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 20px;
  border-radius: 6px;
  flex: 1 1 280px;
  transition: 0.3s;
}

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

/* Form */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #004c97;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #00386e;
}

/* Job Listings */
.job-listing {
  background: white;
  padding: 20px;
  border-left: 5px solid #00b383;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.job-listing h3 {
  margin-bottom: 8px;
}

.job-listing:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

/* Fancy List (About Page) */
.fancy-list {
  list-style: none;
  padding-left: 0;
}

.fancy-list li {
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.fancy-list li::before {
  content: "✓";
  color: #00b383;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Footer */
footer {
  background: #002f5f;
  color: white;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Nav */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  nav#nav-links {
    display: none;
    flex-direction: column;
    background: #002f5f;
    text-align: center;
    padding: 20px;
  }

  nav#nav-links.show {
    display: flex;
  }

  .card-list {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
