body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  background: #ffffff;
  color: #333;
}

.container {
  max-width: 80%;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: #002B5B;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #002B5B;
  font-weight: bold;
}

section {
  padding: 100px 0 60px;
}

.hero {
  background: #002B5B;
  color: white;
  padding: 100px 0 100px;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-left: 40px; /* Adds ~1 inch of space */
}


.hero-logo img {
  max-width: 250px;
  height: auto;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero button {
  background: white;
  color: #002B5B;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

h2 {
  color: #002B5B;
  text-align: center;
  margin-bottom: 20px;
}

.card {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-inner {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 220px;
}

.contact {
  background: #002B5B;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #E0E0E0;
  color: #333;
}

.contact button {
  background: white;
  color: #002B5B;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.top-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}
