:root {
  --primary: #2bdf34ff;
  --secondary: #e30ceaff;
  --background: #F9FAFB;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --accent: #f04343ff;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: var(--font-size-base);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}



img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background-color: var(--background);
  padding: var(--space-md) 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-sm);
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--primary);
}

.hero {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-text h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hero-text p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

.hero-image {
  position: relative;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  overflow: hidden;
  aspect-ratio: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--accent);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-family: inherit;
  background-color: white;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.footer {
  background-color: var(--text-primary);
  color: white;
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin-bottom: var(--space-md);
}

.footer-menu a {
  color: white;
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-text {
  font-size: var(--font-size-xs);
  opacity: 0.7;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content {
  max-width: 600px;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content {
  max-width: 600px;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

  .cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

.section-gradient {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(43, 223, 52, 0.1) 0%, rgba(227, 12, 234, 0.1) 50%, rgba(240, 67, 67, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(43, 223, 52, 0.05) 0%, transparent 70%);
  animation: gradient-rotate 20s linear infinite;
}

@keyframes gradient-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gradient-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.gradient-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2xl);
  color: var(--text-primary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.gradient-feature {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.gradient-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(43, 223, 52, 0.1), transparent);
  transition: left 0.5s ease;
}

.gradient-feature:hover::before {
  left: 100%;
}

.gradient-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gradient-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.gradient-feature-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.gradient-feature-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
}

.section-timeline {
  padding: var(--space-2xl) 0;
  background: var(--text-primary);
  color: white;
  position: relative;
}

.timeline-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-2xl);
  color: white;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 18px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border: 4px solid var(--text-primary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(43, 223, 52, 0.3);
  animation: marker-glow 2s ease-in-out infinite;
}

@keyframes marker-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43, 223, 52, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(43, 223, 52, 0.1); }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  border-left: 3px solid var(--primary);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.timeline-item-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: white;
}

.timeline-item-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.section-geometric {
  padding: var(--space-2xl) 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.geometric-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  min-height: 600px;
}

.geometric-shape {
  position: absolute;
  border-radius: var(--border-radius-lg);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary);
  top: 50%;
  right: 10%;
  border-radius: 50%;
  animation-delay: 2s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: var(--accent);
  bottom: 15%;
  left: 15%;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.geometric-content {
  position: relative;
  z-index: 2;
}

.geometric-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-2xl);
  color: var(--text-primary);
  position: relative;
}

.geometric-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.geometric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.geometric-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.geometric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.geometric-card:hover::before {
  transform: scaleX(1);
}

.geometric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.geometric-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.geometric-card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.geometric-card-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .gradient-features {
    grid-template-columns: 1fr;
  }

  .gradient-title {
    font-size: var(--font-size-2xl);
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-marker {
    left: 3px;
    width: 20px;
    height: 20px;
  }

  .geometric-grid {
    grid-template-columns: 1fr;
  }

  .geometric-shape {
    display: none;
  }

  h1 {
    font-size: var(--font-size-2xl);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  .timeline-title {
    font-size: var(--font-size-2xl);
  }

  .geometric-title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .header-content {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: var(--font-size-base);
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .hero-text h1 {
    font-size: var(--font-size-xl);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
  }
}

