/* Landing Page Styles */
:root {
  --primary-color: #0f172a;
  /* Deep Navy - elegant & strong */
  --accent-color: #0d8088;
  /* Teal - as requested */
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body.public-body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--accent-color) !important;
}

.lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.8;
}

/* Feature Lists */
.feature-list {
  padding-left: 0;
  margin-top: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.25rem;
}

.feature-list li i.bi-check2-circle {
  color: var(--accent-color);
}

.feature-list li i.bi-x-circle {
  color: #ef4444;
  /* Muted Red */
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.8rem 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 6px -1px rgba(13, 128, 136, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b6e75;
  /* Darker shade of accent */
  border-color: #0b6e75;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(13, 128, 136, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-width: 2px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #ffffff, #f1f5f9);
}

.hero-img {
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-height: 80vh;
  object-fit: cover;
  width: 100%;
}

/* Problem */
.problem-section {
  background-color: #fff;
}

.problem-img {
  max-height: 60vh;
  object-fit: contain;
}

/* Solution */
.solution-section {
  background-color: var(--bg-light);
}

.solution-card {
  border: none;
  background: transparent;
}

.solution-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Audience */
.audience-section {
  background-color: #fff;
}

/* How it works */
.how-it-works-section {
  background-color: var(--bg-light);
  padding: 2.5rem 0;
  /* Reduced from default 5rem */
}

.how-it-works-section img {
  margin-bottom: 2rem;
  /* Ensure image doesn't push text too far if it has internal whitespace */
}

/* Tranquility */
.tranquility-section {
  background-color: #fff;
}

/* CTA/Contact */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 6rem 0;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: #cbd5e1;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  color: var(--primary-color);
}