:root {
  /* Color Palette - Warm, Neutral, Natural */
  --bg-color: #FAFAF8;       /* Very soft off-white */
  --section-bg: #F2EFE9;     /* Warm beige for alternating sections */
  --text-color: #4A4A4A;     /* Softer than black, easy on eyes */
  --heading-color: #5D4037;  /* Earthy brown for presence */
  --accent-color: #D4A373;   /* Soft warm accent (sand/terracotta) */
  --accent-hover: #C28E60;
  --white: #FFFFFF;
  --success-color: #7D927D;  /* Muted green */
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.05);
  
  /* Spacing */
  --container-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  
  /* Typography */
  --font-body: 'Nunito', sans-serif; /* Rounded, friendly */
  --font-heading: 'Lora', serif;     /* Human, readable */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Utilities */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50px; /* Rounded for friendliness */
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.section-padding {
  padding: var(--spacing-lg) 0;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(250, 250, 248, 0.9), rgba(250, 250, 248, 0.8)), url('hero-bg-placeholder.jpg'); /* Graceful degredation if no image */
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: #666;
}

.subheadline {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  display: block;
  opacity: 0.9;
}

/* When is this space for you */
.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature-card {
  background: var(--bg-color);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: var(--spacing-sm);
}

/* About Section */
.about {
  background-color: var(--section-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  margin-bottom: var(--spacing-sm);
}

/* How It Works */
.steps {
  background-color: var(--white);
}

.steps-list {
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.step-item {
  position: relative;
  padding-left: 0;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
}

/* EFT/Emotional Support */
.eft-section {
  background-color: var(--section-bg);
  text-align: center;
}

.eft-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Warnings */
.disclaimer {
  background-color: #FEF2F2; /* Very soft caution tint */
  border-left: 4px solid #E57373;
  padding: var(--spacing-md);
  margin: var(--spacing-lg) auto;
  max-width: 800px;
  border-radius: 4px;
}

.disclaimer h4 {
  color: #D32F2F;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer p {
  font-size: 0.9rem;
  color: #555;
}

/* Contact */
.contact {
  background-color: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: var(--spacing-md);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.2);
}

/* Footer */
footer {
  background-color: var(--heading-color);
  color: var(--bg-color);
  padding: var(--spacing-md) 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: pulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20BA5C;
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
