/* Template 3 - Ocean Blues / Clean Minimalist */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --color-white: #ffffff;
  --color-ice: #f0f7fc;
  --color-light-blue: #e1f0fa;
  --color-ocean: #0d6eaf;
  --color-deep-ocean: #084c7a;
  --color-navy: #0a2540;
  --color-teal-accent: #14b8a6;

  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-ice);
  --text-primary: var(--color-navy);
  --text-secondary: #3a5a7c;
  --text-muted: #6b8aab;
  --accent: var(--color-ocean);
  --accent-hover: var(--color-deep-ocean);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Clean Split Layout */
.site-header {
  background: var(--color-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-light-blue);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-logo a {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.site-logo a::before {
  content: "";
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-teal-accent) 100%);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.site-logo a:hover::before {
  transform: rotate(10deg) scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--color-ice);
  padding: 0.35rem;
  border-radius: 12px;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--color-ocean);
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(13, 110, 175, 0.12);
}

/* Hero Section - Centered Minimal */
.section.head {
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, var(--color-ice) 0%, var(--color-white) 100%);
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: slideDown 0.6s ease-out;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
  animation: slideDown 0.6s ease-out 0.15s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section header h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Footer - Modern Bottom Bar */
.footer {
  background: var(--color-navy);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-teal-accent);
}

.footer-bottom {
  text-align: center;
}

.copyright,
.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSmooth 0.5s ease forwards;
}

@keyframes fadeInSmooth {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.2s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
