:root {
  --primary-color: #EE7738;
  --secondary-color: #F59D2A;
  --accent-color: #FFEB00;
  --light-color: #FFF8E7;
  --dark-color: #34495D;
  --gradient-primary: linear-gradient(135deg, #F59D2A 0%, #EE7738 100%);
  --hover-color: #D06B2F;
  --background-color: #FFFEF9;
  --text-color: #2C3D4F;
  --border-color: rgba(238, 119, 56, 0.2);
  --divider-color: rgba(245, 157, 42, 0.1);
  --shadow-color: rgba(238, 119, 56, 0.15);
  --highlight-color: #5CB338;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Background Pattern */
.bg-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(238, 119, 56, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 157, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 235, 0, 0.06) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  background-position: 0 0, 100px 0, 200px 100px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
}

.menu-toggle:checked+.mobile-menu {
  max-height: 300px;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Custom styles for accessibility and responsiveness */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-container {
    flex-direction: column;
  }
}