:root {
  --primary-color: #8FBC8F;
  --secondary-color: #D4E6F1;
  --accent-color: #F39C12;
  --text-primary: #2C3E50;
  --text-secondary: #7F8C8D;
  --background-primary: #F8FBF7;
  --background-secondary: #E8F5E8;
  --footer-background: #5D6D7E;
  --shadow-soft: 0 8px 25px -8px rgba(143, 188, 143, 0.3);
  --shadow-medium: 0 12px 35px -10px rgba(143, 188, 143, 0.4);
  --border-radius-organic: 20px;
  --border-radius-soft: 16px;
  --border-radius-button: 24px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Comfortaa', 'Nunito', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--secondary-color) 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

h1 {
  font-size: 3.2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-secondary) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(143, 188, 143, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(212, 230, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-light {
  background: var(--background-primary);
}

.section-alt {
  background: var(--background-secondary);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-organic);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(143, 188, 143, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: var(--border-radius-organic) var(--border-radius-organic) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius-button);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7FA06F 100%);
  color: white;
  box-shadow: 0 6px 20px -6px rgba(143, 188, 143, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -6px rgba(143, 188, 143, 0.6);
  background: linear-gradient(135deg, #7FA06F 0%, var(--primary-color) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #E67E22 100%);
  color: white;
  box-shadow: 0 6px 20px -6px rgba(243, 156, 18, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -6px rgba(243, 156, 18, 0.5);
  background: linear-gradient(135deg, #E67E22 0%, var(--accent-color) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px -4px rgba(143, 188, 143, 0.3);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(143, 188, 143, 0.4);
}

.btn-soft {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-soft);
  box-shadow: 0 4px 15px -4px rgba(143, 188, 143, 0.2);
}

.btn-soft:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(143, 188, 143, 0.3);
}

.btn-full {
  width: 100%;
  display: block;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-group .btn {
  flex: 1;
  min-width: 140px;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(143, 188, 143, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Comfortaa', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-soft);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(143, 188, 143, 0.1);
  color: var(--primary-color);
}

.footer {
  background: linear-gradient(135deg, var(--footer-background) 0%, #34495E 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-family: 'Comfortaa', sans-serif;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(143, 188, 143, 0.3);
  border-radius: var(--border-radius-soft);
  background: rgba(255, 255, 255, 0.8);
  font-family: 'Comfortaa', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237F8C8D' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-soft);
  margin-bottom: 1rem;
  border-left: 4px solid;
}

.alert-success {
  background: rgba(143, 188, 143, 0.1);
  color: #27AE60;
  border-left-color: var(--primary-color);
}

.alert-warning {
  background: rgba(243, 156, 18, 0.1);
  color: #E67E22;
  border-left-color: var(--accent-color);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.organic-shape {
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
}

.organic-shape-alt {
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7FA06F 100%);
  color: white;
  border-radius: var(--border-radius-button);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Comfortaa', sans-serif;
}

.badge-soft {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.badge-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px -10px rgba(143, 188, 143, 0.4);
}

.stats-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7FA06F 100%);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-medium);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 1rem;
  opacity: 0.9;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-organic);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(143, 188, 143, 0.1);
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: 'Baloo 2', cursive;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h5 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .header-content {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .container-custom {
    padding: 0 1rem;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
  }
  
  .grid {
    gap: 1.5rem;
  }
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--secondary-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(143, 188, 143, 0.2);
  border-radius: var(--border-radius-button);
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: var(--border-radius-button);
  transition: width 0.3s ease;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background: rgba(44, 62, 80, 0.9);
  color: white;
  text-align: center;
  border-radius: var(--border-radius-soft);
  padding: 0.75rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}