@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Brand Colors */
  --brand-ocean: #0F766E;
  --brand-sunset: #F97316;
  --ui-paper: #F8FAFC;
  --text-ink: #1E293B;
  
  /* Gradients & Shadows */
  --gradient-brand: linear-gradient(135deg, #0F766E 0%, #042F2E 100%);
  --shadow-soft: 0 10px 25px -5px rgba(15, 118, 110, 0.1);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-ink);
  background-color: var(--ui-paper);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-ocean);
}

/* Custom DOM Elements */
.site-header-nav {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}

.brand-button-primary {
  background-color: var(--brand-sunset);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s ease;
}

.brand-button-primary:hover {
  background-color: #EA580C;
  transform: translateY(-2px);
}

.brand-button-outline {
  border: 2px solid var(--brand-ocean);
  color: var(--brand-ocean);
  font-weight: 600;
  transition: all 0.3s ease;
}

.brand-button-outline:hover {
  background-color: var(--brand-ocean);
  color: #ffffff;
}

.info-grid-layout {
  display: grid;
  gap: 2rem;
}

.knowledge-box {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--brand-ocean);
}

.step-circle-indicator {
  width: 40px;
  height: 40px;
  background-color: var(--brand-sunset);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Specific elements for pages */
.motion-hero-wrap {
  position: relative;
  overflow: hidden;
}

.content-overlay-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.numbered-list-styled {
  list-style: none;
  padding: 0;
}

.numbered-list-styled li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.numbered-list-styled li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--brand-sunset);
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.footer-global {
  background-color: var(--text-ink);
  color: #e2e8f0;
}

.cookie-alert-layer {
  background-color: var(--text-ink);
  color: var(--ui-paper);
  border-top: 3px solid var(--brand-sunset);
}

.cookie-btn-accept {
  background-color: var(--brand-sunset);
  color: white;
}

.cookie-btn-decline {
  background-color: #4B5563;
  color: white;
}