:root {
  /* Primary Colors - Analog Scheme */
  --primary-color: #3a7bd5;
  --primary-light: #6faeff;
  --primary-dark: #2a5cb0;
  
  /* Secondary Colors */
  --secondary-color: #7a59c5;
  --secondary-light: #a689ff;
  --secondary-dark: #5c3ba0;
  
  /* Tertiary Colors */
  --tertiary-color: #3ac5c2;
  --tertiary-light: #6eeae7;
  --tertiary-dark: #289b98;
  
  /* Neutrals */
  --background-light: #f8f9fd;
  --background-dark: #22253a;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #7a7a8c;
  
  /* Neomorphic Shadows */
  --nm-shadow-light: 10px 10px 20px rgba(163, 177, 198, 0.4), 
                    -10px -10px 20px rgba(255, 255, 255, 0.7);
  --nm-shadow-dark: 10px 10px 20px rgba(0, 0, 0, 0.2), 
                   -10px -10px 20px rgba(255, 255, 255, 0.1);
  --nm-shadow-inset: inset 5px 5px 10px rgba(163, 177, 198, 0.4), 
                     inset -5px -5px 10px rgba(255, 255, 255, 0.7);
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --border-radius-circle: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Typography */
  --font-family-heading: 'Inter', sans-serif;
  --font-family-body: 'IBM Plex Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-sm);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: var(--font-size-lg);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: var(--font-size-md);
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--nm-shadow-light);
  background-color: var(--background-light);
  color: var(--text-dark);
}

.btn:hover, .btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--nm-shadow-inset);
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
}

.primary-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: var(--text-light);
}

.secondary-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--text-light);
}

.secondary-btn:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
  color: var(--text-light);
}

.small-btn {
  padding: 8px 16px;
  font-size: var(--font-size-sm);
}

/* Neomorphic Card Styles */
.card, .story-card, .workshop-card, .testimonial-card, .media-card, .resource-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover, .story-card:hover, .workshop-card:hover, .testimonial-card:hover, .media-card:hover, .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: var(--space-lg);
  text-align: center;
  flex: 1;
  width: 100%;
}

.image-container, .card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img, .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .image-container img, 
.card:hover .card-image img,
.story-card:hover .image-container img,
.workshop-card:hover .image-container img,
.media-card:hover .image-container img {
  transform: scale(1.05);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: var(--space-md);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  margin: 0 auto;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-medium);
}

.nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-medium);
  z-index: 999;
}

.nav-list-mobile {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* Workshops Section */
.workshops {
  position: relative;
  overflow: hidden;
}

.workshops-slider {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--transition-medium);
}

.workshop-card {
  flex: 0 0 calc(33.333% - var(--space-lg));
  min-width: 300px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  background-color: var(--background-light);
  border: none;
  box-shadow: var(--nm-shadow-light);
  cursor: pointer;
  font-size: var(--font-size-xl);
  z-index: 2;
  transition: all var(--transition-fast);
}

.carousel-button:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.duration {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--tertiary-light);
  color: var(--text-dark);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
}

/* Success Stories Section */
.success-stories {
  background-color: #f0f4fa;
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--tertiary-light);
  border-radius: var(--border-radius-circle);
  opacity: 0.1;
  z-index: 0;
}

.success-stories::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--secondary-light);
  border-radius: var(--border-radius-circle);
  opacity: 0.1;
  z-index: 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.story-card {
  background-color: var(--background-light);
}

.story-quote {
  font-style: italic;
  color: var(--secondary-color);
  font-size: var(--font-size-lg);
  margin: var(--space-md) 0;
  position: relative;
  padding: 0 var(--space-md);
}

.story-quote::before,
.story-quote::after {
  content: '"';
  font-size: var(--font-size-3xl);
  color: rgba(122, 89, 197, 0.2);
  position: absolute;
}

.story-quote::before {
  top: -15px;
  left: 0;
}

.story-quote::after {
  bottom: -15px;
  right: 0;
}

/* Sustainability Section */
.sustainability {
  position: relative;
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
}

.sustainability-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.sustainability-text {
  flex: 1;
  min-width: 300px;
}

.sustainability-features {
  margin-top: var(--space-lg);
}

.feature {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-circle);
}

.feature h4 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

/* Resources Section */
.resources {
  background-color: #f8f9fd;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  padding: var(--space-lg);
  height: 100%;
}

.resource-link {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.resource-link::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform var(--transition-fast);
}

.resource-link:hover::after {
  transform: translateX(5px);
}

/* Media Section */
.media {
  position: relative;
  overflow: hidden;
}

.media-slider {
  position: relative;
}

.media-card {
  flex: 0 0 calc(33.333% - var(--space-lg));
  min-width: 300px;
}

.media-date {
  display: block;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin-top: var(--space-md);
}

/* Customer Stories */
.customer-stories {
  background-color: #f0f4fa;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: var(--space-lg);
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-circle);
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--nm-shadow-light);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-md);
}

.author {
  font-weight: 600;
  color: var(--primary-dark);
}

.rating {
  color: #ffc107;
  margin-top: var(--space-sm);
  font-size: var(--font-size-lg);
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-details ul {
  margin-bottom: var(--space-lg);
}

.contact-details li {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.contact-details i {
  margin-right: var(--space-sm);
  color: var(--primary-color);
}

.contact-hours {
  margin-top: var(--space-lg);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--nm-shadow-light);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: #f0f4fa;
  box-shadow: var(--nm-shadow-inset);
  transition: box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-light);
}

.form-toggle {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  gap: var(--space-sm);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Footer Styles */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  margin-bottom: var(--space-md);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-links-column {
  flex: 1;
  min-width: 160px;
}

.footer-links-column h3 {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-links-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links-column a:hover {
  color: var(--text-light);
}

.social-links a {
  display: inline-block;
  margin-right: var(--space-md);
  transition: transform var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--nm-shadow-light);
}

.success-icon {
  font-size: 80px;
  color: var(--tertiary-color);
  margin-bottom: var(--space-lg);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: var(--space-xl);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-content p, .page-content ul {
  margin-bottom: var(--space-md);
}

.page-content ul {
  padding-left: var(--space-lg);
  list-style-type: disc;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 37, 58, 0.95);
  color: var(--text-light);
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 600;
  margin-left: var(--space-lg);
  transition: background-color var(--transition-fast);
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero h2 {
    font-size: var(--font-size-xl);
  }
  
  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-md);
  }
  
  .workshop-card, .media-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
    --font-size-xl: 1.25rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .sustainability-content, 
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cookie-btn {
    margin-left: 0;
    width: 100%;
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Button with bounce effect */
.btn:hover {
  animation: bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Parallax effect for background images */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Biomorphic shapes */
.biomorphic-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  opacity: 0.1;
  z-index: 0;
}

.biomorphic-shape-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
}

.biomorphic-shape-2 {
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
}