:root {
  /* Color Palette - Complementary Color Scheme */
  --primary-color: #6c5ce7;
  --primary-dark: #5549b6;
  --primary-light: #8a7ee5;
  --secondary-color: #e7a75c;
  --secondary-dark: #d49042;
  --secondary-light: #f0be80;
  --accent-color: #5ce7e7;
  --accent-dark: #42c9c9;
  --accent-light: #8af0f0;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f7;
  --neutral-300: #e1e1e6;
  --neutral-400: #c8c8d0;
  --neutral-500: #92929d;
  --neutral-600: #555561;
  --neutral-700: #28282f;
  --neutral-800: #1c1c21;
  --neutral-900: #0f0f12;
  
  /* Shadows for Neumorphism */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Width */
  --container-width: 1200px;
  --container-padding: 2rem;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background-color: var(--neutral-200);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-sm);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  color: var(--neutral-600);
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  border: none;
  transition: all var(--transition-normal);
  background-color: var(--primary-color);
  color: var(--neutral-100);
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
}

.btn:hover, button:hover, input[type='submit']:hover {
  color: #fff;
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 
    7px 7px 15px var(--shadow-dark),
    -7px -7px 15px var(--shadow-light);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: 
    3px 3px 5px var(--shadow-dark),
    -3px -3px 5px var(--shadow-light);
}

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

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

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
}

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

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  text-decoration: none;
}

.logo span {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: var(--space-lg);
}

.main-nav a {
  font-weight: 500;
  color: var(--neutral-700);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav 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(--neutral-700);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.hero-text h1, .hero-text h2, .hero-text p {
  color: var(--neutral-100);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* Features Section */
.features-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.features-section h2 {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
  text-align: center;
}

.card-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--neutral-800);
}

.card-content p {
  margin-bottom: var(--space-lg);
  color: var(--neutral-600);
}

/* Methodology Section */
.methodology-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  position: relative;
}

.methodology-section h2 {
  text-align: center;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.methodology-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--neutral-100);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.methodology-item:hover {
  transform: translateY(-5px);
}

.methodology-icon {
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.methodology-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.methodology-content h3 {
  margin-top: 0;
  color: var(--primary-color);
}

/* Innovation Section */
.innovation-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.innovation-section h2 {
  text-align: center;
}

.innovation-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.innovation-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.innovation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.innovation-image:hover img {
  transform: scale(1.05);
}

.innovation-text {
  flex: 1;
}

.innovation-text h3 {
  color: var(--primary-color);
  margin-top: 0;
}

/* Workshops Section */
.workshops-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  position: relative;
}

.workshops-section h2 {
  text-align: center;
}

.workshops-slider {
  position: relative;
  margin-top: var(--space-xl);
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.workshops-slider::-webkit-scrollbar {
  display: none;
}

.workshop-card {
  flex: 0 0 auto;
  width: calc(33.333% - var(--space-lg));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.workshop-card:hover {
  transform: translateY(-10px);
}

.workshop-card .card-image {
  width: 100%;
  height: 220px;
  position: relative;
}

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

.workshop-date {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
  font-weight: 500;
}

.workshops-navigation {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.prev-btn, .next-btn {
  background-color: var(--neutral-100);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
  transition: all var(--transition-normal);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

/* Resources Section */
.resources-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.resources-section h2 {
  text-align: center;
}

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

.resource-card {
  background-color: var(--neutral-200);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-5px);
  background-color: var(--primary-light);
  color: var(--neutral-100);
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
  color: var(--neutral-800);
}

.resource-card:hover h3 {
  color: var(--neutral-100);
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
  color: var(--neutral-600);
}

.resource-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.resource-link {
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.resource-card:hover .resource-link {
  color: var(--neutral-100);
}

/* Webinars Section */
.webinars-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  position: relative;
}

.webinars-section h2 {
  text-align: center;
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.webinar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.webinar-card:hover {
  transform: translateY(-10px);
}

.webinar-card .card-image {
  width: 100%;
  height: 200px;
  position: relative;
}

.webinar-date {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.webinar-date .day {
  font-size: 1.5rem;
  font-weight: 700;
}

.webinar-date .month {
  font-size: 0.875rem;
}

.webinar-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--neutral-600);
  font-size: 0.9rem;
}

.webinar-info span {
  display: flex;
  align-items: center;
}

.webinar-info i {
  margin-right: var(--space-xs);
  color: var(--primary-color);
}

/* Success Stories Section */
.success-stories-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.success-stories-section h2 {
  text-align: center;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  transition: transform var(--transition-normal);
}

.story-card:hover {
  transform: translateY(-10px);
}

.story-card .card-image {
  width: 100%;
  height: 400px;
}

.story-card .card-content {
  padding: var(--space-lg);
  text-align: center;
}

.story-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.story-text {
  font-style: italic;
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

/* Contact Section */
.contact-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
  position: relative;
}

.contact-section h2 {
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-form-container {
  background-color: var(--neutral-100);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background-color: var(--neutral-200);
  transition: all var(--transition-normal);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--neutral-100);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
}

.info-icon {
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.info-icon img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  object-fit: cover;
}

.info-content h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-content p {
  margin-bottom: var(--space-xs);
  color: var(--neutral-600);
}

.contact-map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.contact-map img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.main-footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding-top: var(--space-xxl);
}

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

.footer-logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-100);
  text-decoration: none;
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  color: var(--neutral-400);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

.footer-links h3,
.footer-courses h3,
.footer-social h3 {
  color: var(--neutral-100);
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-courses ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-courses li,
.footer-social li {
  margin-bottom: var(--space-md);
}

.footer-links a,
.footer-courses a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-courses a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--neutral-500);
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  position: relative;
  background-color: var(--neutral-100);
  margin: 5% auto;
  padding: 0;
  width: 80%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.modal-header {
  padding: var(--space-lg);
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.modal-header h2 {
  margin: 0;
  color: var(--neutral-100);
}

.modal-body {
  padding: var(--space-xl);
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  color: var(--neutral-100);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--neutral-300);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--neutral-200);
}

.success-container {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-100);
  font-size: 2rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px; /* Space for fixed header */
  padding-bottom: var(--space-xxl);
}

.page-content .container {
  background-color: var(--neutral-100);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

/* Cookie Consent */
#cookieConsent {
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#acceptCookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

/* Curved Grid Layout */
.curved-section {
  position: relative;
}

.curved-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: inherit;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.curved-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: inherit;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

/* Parallax Effects */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .innovation-content {
    flex-direction: column;
  }
  
  .workshop-card {
    width: calc(50% - var(--space-lg));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--neutral-100);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-lg);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 0 0 var(--space-md) 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .methodology-item, 
  .info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .methodology-icon,
  .info-icon {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .workshop-card {
    width: 100%;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 6rem 0 3rem;
  }
  
  .card-image {
    height: 200px;
  }
}