:root {
  /* Colors */
  --primary-color: #FFA000;
  /* Warm Amber - playful and energetic */
  --primary-light: #FFECB3;
  --secondary-color: #00ACC1;
  /* Cyan - clear and smart */
  --secondary-light: #E0F7FA;
  --accent-color: #FF5722;
  /* Deep Orange - for actions */
  --text-color: #37474F;
  /* Blue Grey - softer than black */
  --text-light: #90A4AE;
  --bg-color: #FFFDE7;
  /* Very light yellow cream */
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 16px;

  /* Fonts */
  --font-heading: 'Fredoka', cursive;
  /* Rounded, friendly */
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--secondary-color);
}

p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

/* Header */
header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.nav-links a {
  margin-left: 30px;
  font-weight: 500;
  color: var(--text-color);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #FFFDE7 0%, #E0F7FA 100%);
  padding-top: 80px;
  /* Space for header */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius);
  /* Gentle floating animation */
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* About Section */
.about {
  background-color: var(--secondary-light);
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

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

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

/* Footer */
footer {
  background-color: #263238;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #B0BEC5;
  transition: color 0.2s;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #37474F;
  color: #546E7A;
  font-size: 0.9rem;
}

/* Policy Page Specifics */
.policy-header {
  background-color: var(--bg-color);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: static;
}

.policy-content {
  padding: 60px 20px;
  max-width: 800px;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.policy-content h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.policy-content ul,
.policy-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .nav-links {
    display: none;
    /* Mobile menu implementation usually goes here, keeping it simple for now */
  }
}