/* Template 28 - Fresh Mint / Medical Clean */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Raleway:wght@400;600;700&display=swap");

:root {
  --mint-light: #e8f8f5;
  --mint-medium: #a7e9d7;
  --mint-dark: #1abc9c;
  --teal-deep: #16a085;
  --white: #ffffff;
  --gray-light: #ecf0f1;
  --gray-medium: #95a5a6;
  --gray-dark: #34495e;
}

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

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

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Clean Minimal Top */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--mint-dark);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(26, 188, 156, 0.1);
}

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

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

.site-logo a:hover {
  color: var(--mint-dark);
  transform: scale(1.05);
}

.site-logo a::before {
  content: "●";
  color: var(--mint-dark);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
}

.site-nav a:hover {
  background: var(--mint-light);
  color: var(--teal-deep);
  transform: translateY(-2px);
}

/* Hero Section - Light and Airy */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
}

.section.head h1 {
  font-family: "Raleway", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--teal-deep);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--gray-medium);
  max-width: 900px;
  margin: 0 auto;
}

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

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

.section header h2 {
  font-family: "Raleway", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--mint-dark);
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--mint-dark);
  border-radius: 2px;
}

.section header p {
  font-size: 1.15rem;
  color: var(--gray-medium);
  max-width: 650px;
  margin: 1.5rem auto 0;
}

/* Footer - Fresh Minimal */
.footer {
  background: var(--mint-light);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--mint-dark);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.footer-tagline {
  color: var(--gray-dark);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--teal-deep);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint-dark);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--mint-medium);
}

.copyright a {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatUp 0.8s ease forwards;
}

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

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-size: 1.8rem;
  color: var(--mint-dark);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
