
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f4f7fb;
}

a {
  color: #007f9c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #0c293a;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

nav li a {
  color: #e5f3ff;
  font-weight: 500;
}

nav li a:hover {
  color: #ffffff;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5f3ff;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: #0c293a;
    flex-direction: column;
    width: 100%;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

.hero {
  background: linear-gradient(135deg, #0c293a 0%, #007f9c 40%, #1fb7b4 100%);
  color: #ffffff;
  padding: 3.5rem 1rem 3rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero h1 span {
  color: #fcd34d;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag {
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: #fcd34d;
  color: #1f2933;
}

.btn-primary:hover {
  background: #fbbf24;
}

.btn-outline {
  border-color: #e5f3ff;
  color: #e5f3ff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(15,23,42,0.18);
}

.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo-inner {
  background: rgba(15,23,42,0.85);
  border-radius: 1.5rem;
  padding: 1rem;
  max-width: 320px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 45px rgba(0,0,0,0.4);
}

.hero-photo-inner img {
  width: 100%;
  border-radius: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-photo-inner h3 {
  font-size: 1.1rem;
}

.hero-photo-inner p {
  font-size: 0.9rem;
  color: #e5f3ff;
}

/* Layout */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}

.section {
  margin-bottom: 2.75rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #007f9c;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: #0c293a;
}

.section-lead {
  max-width: 38rem;
  color: #52606d;
  font-size: 0.98rem;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.06);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #102a43;
}

.card p {
  font-size: 0.95rem;
  color: #52606d;
}

.card span.label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7b8794;
  margin-bottom: 0.15rem;
}

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.feature-badge-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.feature-badge {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #e0f2fe;
  font-size: 0.8rem;
  color: #035388;
}

/* Resource links */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.resource-card {
  background: #0c293a;
  color: #e5f3ff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.35);
}

.resource-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.resource-card p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  color: #d8e2ec;
}

.resource-card a {
  font-weight: 600;
  color: #fcd34d;
}

.resource-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fb3c8;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.05);
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-details p {
  font-size: 0.95rem;
  color: #52606d;
  margin-bottom: 0.3rem;
}

.contact-details span.label {
  font-weight: 600;
  color: #102a43;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #102a43;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #cbd2d9;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
footer {
  background: #0b1822;
  color: #9fb3c8;
  padding: 1.75rem 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: #d8e2ec;
}

.footer-links a:hover {
  color: #fcd34d;
}

/* Utility */
.lead-list {
  margin-top: 0.5rem;
  margin-left: 1.2rem;
  color: #52606d;
  font-size: 0.95rem;
}

.lead-list li {
  margin-bottom: 0.2rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-inner,
  .feature-row,
  .grid-3,
  .resource-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}
