:root {
  /* Color scheme */
  --primary-color: #333333;
  --primary-light: #666666;
  --primary-dark: #1a1a1a;
  --accent-color: #4a4a4a;
  --accent-light: #717171;
  --accent-dark: #2d2d2d;
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-gray: #555555;
  --background-light: #f5f5f5;
  --background-white: #ffffff;
  --background-dark: #333333;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  --base-font-size: 16px;
  --h1-size: clamp(2.5rem, 5vw, 3.5rem);
  --h2-size: clamp(2rem, 4vw, 2.75rem);
  --h3-size: clamp(1.5rem, 3vw, 2rem);
  --h4-size: clamp(1.2rem, 2vw, 1.5rem);
  --p-size: clamp(1rem, 1.5vw, 1.125rem);
  --small-size: clamp(0.875rem, 1vw, 0.95rem);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-round: 50%;
}

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

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}

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

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

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

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

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

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

p {
  font-size: var(--p-size);
  margin-bottom: var(--space-sm);
}

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

a:hover {
  color: var(--accent-color);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  font-weight: 600;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: var(--space-sm) auto 0;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--space-xs);
}

.mb-2 {
  margin-bottom: var(--space-sm);
}

.mb-3 {
  margin-bottom: var(--space-md);
}

.mb-4 {
  margin-bottom: var(--space-lg);
}

.mt-1 {
  margin-top: var(--space-xs);
}

.mt-2 {
  margin-top: var(--space-sm);
}

.mt-3 {
  margin-top: var(--space-md);
}

.mt-4 {
  margin-top: var(--space-lg);
}

/* Buttons */
.btn, 
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-small);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background-color: var(--background-white);
  box-shadow: var(--shadow-small);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

.main-nav a {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

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

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all var(--transition-normal);
}

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

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Mission Section */
.mission {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.mission-text {
  flex: 1;
}

.mission-image {
  flex: 1;
  text-align: center;
}

.mission-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}

/* Workshops Section */
.workshops {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.custom-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.slides-container {
  display: flex;
  transition: transform var(--transition-slow);
}

.slide {
  min-width: 100%;
  padding: 0 var(--space-sm);
}

.card {
  background-color: var(--background-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

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

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

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

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

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.slider-controls button:hover {
  background-color: var(--primary-dark);
}

/* Portfolio Section */
.portfolio {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: var(--space-md) 0;
}

.timeline-dot {
  position: absolute;
  top: var(--space-md);
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: var(--radius-round);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: var(--space-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: var(--space-md);
}

.testimonial-slide .card-image {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-round);
  margin: 0 auto var(--space-md);
  overflow: hidden;
}

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

.testimonial-company {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: var(--space-sm);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.testimonial-controls button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.testimonial-controls button:hover {
  background-color: var(--primary-dark);
}

/* Community Section */
.community {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.community-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.community-text {
  flex: 1;
}

.community-image {
  flex: 1;
  text-align: center;
}

.community-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}

/* Resources Section */
.resources {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.resources-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

.resource-item {
  background-color: var(--background-white);
  padding: var(--space-md);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-normal);
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.resource-item h3 {
  margin-bottom: var(--space-sm);
}

.resource-item ul {
  list-style-position: inside;
  margin-top: var(--space-sm);
}

.resource-item li {
  margin-bottom: var(--space-xs);
}

.resource-item a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

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

/* Clientele Section */
.clientele {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

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

.client-type {
  text-align: center;
}

/* Innovation Section */
.innovation {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

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

.innovation-text {
  flex: 1;
}

.innovation-image {
  flex: 1;
  text-align: center;
}

.innovation-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}

/* Vision Section */
.vision {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.vision-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
  text-align: center;
}

.vision-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-sm);
}

.contact-map {
  margin-top: var(--space-md);
}

.contact-map img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  width: 100%;
  height: auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

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

.footer h3, .footer h4 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.footer p {
  margin-bottom: var(--space-xs);
  font-size: var(--small-size);
}

.footer-links ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
}

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

.footer-links a,
.footer-legal a,
.footer-social a {
  color: var(--text-light);
  font-size: var(--small-size);
  transition: color var(--transition-normal);
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

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

.footer-bottom p {
  font-size: var(--small-size);
  color: rgba(255, 255, 255, 0.7);
}

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

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

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: var(--space-md);
}

/* Pages - About, Privacy, Terms */
.page-content {
  padding: 120px var(--container-padding) var(--space-xl);
}

.page-content h1 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.page-content section {
  margin-bottom: var(--space-lg);
}

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

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

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

.page-content li {
  margin-bottom: var(--space-xs);
}

/* Media Queries */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1rem;
  }
  
  .mission-content,
  .community-content,
  .innovation-content,
  .vision-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .mission-image,
  .community-image,
  .innovation-image,
  .vision-image {
    order: -1;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: var(--shadow-medium);
    padding: var(--space-sm) 0;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: var(--space-xs) 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .resources-grid,
  .client-types {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --h1-size: clamp(2rem, 5vw, 2.5rem);
    --h2-size: clamp(1.8rem, 4vw, 2.2rem);
    --h3-size: clamp(1.3rem, 3vw, 1.8rem);
  }
  
  .hero {
    min-height: 500px;
  }
  
  .section-title {
    margin-bottom: var(--space-md);
  }
  
  .testimonial-slide .card-image {
    width: 100px;
    height: 100px;
  }
}

/* Animations and Transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

.slide-up {
  animation: slideUp var(--transition-slow) forwards;
}

/* Cookie Consent Styles */
#cookieConsent {
  padding: var(--space-md);
  text-align: center;
  z-index: 9999;
}

#cookieConsent p {
  margin-bottom: var(--space-sm);
}

#acceptCookies {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

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