@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #707070;
  background-color: #ffffff;
  font-size: 15px;
}

header {
  background: #b2b5d2;
  color: #333;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 100;
  border-top: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-wrapper a {
  display: block;
  line-height: 0;
}

.logo-wrapper img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

nav li {
  margin-bottom: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: opacity 0.3s;
  padding: 0.7rem 1rem;
  display: block;
}

nav a:hover {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
}

nav li.nav-button a {
  background: #243c77;
  color: #ffffff;
  border-radius: 4px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  margin-left: 0.5rem;
  opacity: 1;
}

nav li.nav-button a:hover {
  background: #1a2d5c;
  color: #ffffff;
  opacity: 1;
}

main {
  background: white;
  min-height: calc(100vh - 400px);
  margin: 0;
  padding: 0;
}

main > .hero:first-child {
  margin-top: 0;
}

/* Hero Section */
.hero {
  background: #243c77 url('hero-bg.png') center center / cover no-repeat;
  color: white;
  padding: 5rem 0;
  text-align: left;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.hero .container {
  width: 100%;
  max-width: 100%;
  padding-left: 25%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 0.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: white;
  line-height: 1.1;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Section Titles with separator lines */
h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

h2::before,
h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #243c77;
}

h3 {
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 1.2rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #707070;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: #707070;
}

/* Alert Box */
.alert-box {
  background: #ffffff;
  border: none;
  border-left: none;
  padding: 2rem 0;
  margin: 2rem 0;
}

.alert-box h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  margin-top: 0;
}

.alert-box p {
  color: #707070;
  margin-bottom: 0.5rem;
}

.alert-box .signature {
  margin-top: 1rem;
  font-style: normal;
  color: #707070;
}

/* Section */
section {
  margin: 2.5rem 0;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: #f6f6f6;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.feature-card h3 {
  margin-top: 0;
  color: #243c77;
  font-size: 1.1rem;
}

/* Form (kept minimal, contact form removed) */
form {
  max-width: 600px;
  margin: 2rem auto;
}

label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #243c77;
  box-shadow: 0 0 0 3px rgba(36, 60, 119, 0.1);
}

button {
  background: #243c77;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button:hover {
  background: #1a2d5c;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #f6f6f6;
  font-weight: 600;
  color: #333;
}

tbody tr:hover {
  background: #fafafa;
}

/* Info Box */
.info-box {
  background: #f6f6f6;
  border-left: 4px solid #243c77;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0;
}

.info-box h3 {
  margin-top: 0;
  color: #243c77;
}

.info-box p {
  margin-bottom: 0;
}

/* Footer */
footer {
  background: #243c77;
  color: #b2b5d2;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  margin-left: 0;
}

.footer-section li {
  color: #b2b5d2;
}

.footer-section a {
  color: #b2b5d2;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(178,181,210,0.3);
  padding-top: 1.5rem;
  text-align: center;
  color: #b2b5d2;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: #b2b5d2;
}

/* Link Styling */
a {
  color: #243c77;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #1a2d5c;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 0;
    font-size: 0.85rem;
  }

  nav a {
    padding: 0.5rem 0.6rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-content {
    padding-left: 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }
}
