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

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #f4f0e6;
  color: #222;
  line-height: 1.5;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-weight: bold;
  font-size: 1.2rem;
}

.brand-tag {
  font-size: 0.85rem;
  color: #555;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  color: #0a4f6f;
}

/* Buttons */
.btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.btn-outline {
  border: 1.5px solid #0a4f6f;
  color: #0a4f6f;
  background: transparent;
}

/* Hero */
.hero {
  margin-bottom: 3rem;
}

.hero-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.pill {
  display: inline-block;
  background: #e8effe;
  color: #1b3a8a;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lead {
  margin-bottom: 1.5rem;
  color: #444;
}

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

/* Services */
.services {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Contact / Briefing sections */
.briefing,
.contact {
  margin-bottom: 3rem;
}

.briefing h2,
.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.briefing p,
.contact p {
  margin-bottom: 1rem;
  color: #444;
}

/* Footer legal templates (if you add any text blocks later) */
.template-box {
  background: #1f2937;
  color: #f9fafb;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.85rem;
  white-space: pre-wrap;
  margin-bottom: 1rem;
  overflow-x: auto;
}

/* Site footer */
.site-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #555;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand {
  max-width: 420px;
}

.footer-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #666;
}

.footer-links {
  min-width: 180px;
}

.footer-links-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: #0a4f6f;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Legal text blocks */
.footer-legal-block {
  margin-bottom: 1.25rem;
}

.legal-heading {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #333;
}

.legal-text {
  font-size: 0.85rem;
  color: #666;
  max-width: 900px;
}

/* Footer bottom line */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  margin-top: 1rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: #777;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .services {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
  }
}
