/* === VARIABLES === */
:root {
  /* Color Palette - Pastel Brutalism */
  --primary-color: #ffb7c5; /* Pastel pink */
  --primary-dark: #e89eac; /* Darker pink */
  --secondary-color: #aed9e0; /* Pastel blue */
  --secondary-dark: #8abbc5; /* Darker blue */
  --accent-color: #ffd166; /* Pastel yellow */
  --accent-dark: #e5bc5c; /* Darker yellow */
  --success-color: #b5e48c; /* Pastel green */
  --error-color: #f25c54; /* Pastel red */
  --background-light: #f8f9fa; /* Light background */
  --background-dark: #2b2d42; /* Dark background */
  --text-dark: #333333; /* Dark text */
  --text-light: #ffffff; /* Light text */
  --text-muted: #6c757d; /* Muted text */
  --border-color: #dee2e6; /* Border color */
  --shadow-color: rgba(0, 0, 0, 0.1); /* Shadow */
  --shadow-dark: rgba(0, 0, 0, 0.2); /* Darker shadow */
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Brutalist 3D UI Elements */
  --border-thick: 4px;
  --box-shadow-brutalist: 8px 8px 0px var(--shadow-color);
  --box-shadow-brutalist-hover: 10px 10px 0px var(--shadow-dark);
  --transition-slow: 0.5s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-fast: 0.15s ease-in-out;
}

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--body-font);
  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(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

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

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-xl);
}

h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: var(--primary-color);
  left: 25%;
  bottom: -10px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

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

a {
  color: var(--secondary-dark);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-xxl) 0;
  position: relative;
}

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

/* === HEADER & NAVIGATION === */
.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 var(--shadow-color);
  padding: var(--space-md) 0;
  transition: all var(--transition-medium);
}

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

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

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

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

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

.desktop-nav ul li a {
  font-weight: 600;
  position: relative;
  padding-bottom: var(--space-xs);
}

.desktop-nav ul li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.desktop-nav ul li a:hover:before {
  width: 100%;
}

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

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--background-light);
  overflow: hidden;
  transition: height var(--transition-medium);
  z-index: 999;
}

.mobile-nav.active {
  height: calc(100vh - 80px);
}

.mobile-nav ul {
  list-style: none;
  padding: var(--space-lg);
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: var(--space-md);
}

.mobile-nav ul li a {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  padding: var(--space-sm) 0;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin-top: -80px; /* Offset for fixed header */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

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

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

/* === BUTTONS === */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: var(--border-thick) solid transparent;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
  font-size: 1rem;
  box-shadow: var(--box-shadow-brutalist);
  transform: translateY(0);
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(0);
  box-shadow: 4px 4px 0px var(--shadow-color);
}

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

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

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

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

/* === PROCESS SECTION === */
.process-section {
  background-color: var(--background-light);
}

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

.process-step {
  background-color: white;
  padding: var(--space-lg);
  border: var(--border-thick) solid var(--border-color);
  box-shadow: var(--box-shadow-brutalist);
  text-align: center;
  transition: all var(--transition-medium);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.step-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* === CASE STUDIES SECTION === */
.case-studies {
  background-color: var(--background-light);
}

.accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-md);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: rgba(174, 217, 224, 0.1);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform var(--transition-medium);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.case-study-content {
  display: flex;
  flex-wrap: wrap;
  padding: 0 var(--space-lg) var(--space-lg);
}

.case-study-image {
  flex: 1;
  min-width: 300px;
  margin-right: var(--space-lg);
  text-align: center;
}

.case-study-image img {
  max-width: 100%;
  border: var(--border-thick) solid var(--border-color);
  box-shadow: var(--box-shadow-brutalist);
  margin: 0 auto;
}

.case-study-text {
  flex: 2;
  min-width: 300px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

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

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* === MEDIA SECTION === */
.media-section {
  background-color: var(--background-light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: var(--border-thick) solid var(--border-color);
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: var(--space-md);
  background-color: white;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

/* === PARTNERS SECTION === */
.partners-section {
  background-color: white;
}

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

.partner-card {
  text-align: center;
  padding: var(--space-lg);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.partner-card img {
  max-width: 200px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto var(--space-md);
}

/* === EXTERNAL RESOURCES === */
.external-resources {
  background-color: var(--background-light);
}

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

.resource-card {
  padding: var(--space-lg);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
  text-decoration: none;
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

/* === WORKSHOPS SECTION === */
.workshops-section {
  background-color: white;
}

.workshops-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.workshop-card {
  display: flex;
  flex-wrap: wrap;
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
}

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

.workshop-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.workshop-content {
  flex: 2;
  min-width: 300px;
  padding: var(--space-lg);
}

.workshop-date {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* === AWARDS SECTION === */
.awards-section {
  background-color: var(--background-light);
}

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

.award-card {
  text-align: center;
  padding: var(--space-lg);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  height: 100%;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.stats-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: var(--space-xxl);
}

.stat-widget {
  text-align: center;
  padding: var(--space-lg);
  min-width: 200px;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* === SUCCESS STORIES SECTION === */
.success-stories {
  background-color: white;
}

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

.testimonial-card {
  flex: 1 1 300px;
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  padding: var(--space-lg);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: var(--border-thick) solid var(--primary-color);
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  font-size: 2rem;
  font-family: var(--heading-font);
  color: var(--primary-color);
  position: absolute;
}

.testimonial-text:before {
  top: -20px;
  left: -10px;
}

.testimonial-text:after {
  bottom: -20px;
  right: -10px;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial-position {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === PRICING SECTION === */
.pricing-section {
  background-color: var(--background-light);
}

.pricing-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  border-bottom: var(--border-thick) solid var(--border-color);
}

.tab-button {
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: none;
}

.tab-button:hover {
  color: var(--text-dark);
  box-shadow: none;
  transform: none;
}

.tab-button.active {
  color: var(--primary-color);
}

.tab-button.active:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
}

.tabs-content {
  margin-top: var(--space-lg);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

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

.pricing-card {
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.pricing-header {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--secondary-color);
  width: 100%;
}

.pricing-subtitle {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0;
}

.pricing-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.pricing-features {
  padding: var(--space-lg);
  flex-grow: 1;
  width: 100%;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.pricing-features li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.pricing-footer {
  padding: 0 var(--space-lg) var(--space-lg);
  width: 100%;
  text-align: center;
}

/* === INSIGHTS SECTION === */
.insights-section {
  background-color: white;
}

.insights-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.insight-card {
  display: flex;
  flex-wrap: wrap;
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
}

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

.insight-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.insight-content {
  flex: 2;
  min-width: 300px;
  padding: var(--space-lg);
}

.insight-tips {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.insight-tips li {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: var(--background-light);
}

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

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.contact-card {
  text-align: center;
  padding: var(--space-lg);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-brutalist-hover);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

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

.contact-form {
  padding: var(--space-xl);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  border: var(--border-thick) solid var(--border-color);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
}

.form-checkbox input {
  width: auto;
  margin-right: var(--space-sm);
}

.form-checkbox label {
  margin-bottom: 0;
}

/* === FOOTER === */
.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 {
  max-width: 150px;
  margin-bottom: var(--space-md);
}

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

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

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.social-links li a {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}

.social-links li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-links li:nth-child(1) a:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="white" d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>');
}

.social-links li:nth-child(2) a:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
}

.social-links li:nth-child(3) a:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.social-links li:nth-child(4) a:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="white" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>');
}

.social-links li:nth-child(5) a:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"/></svg>');
}

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

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
}

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  border: var(--border-thick) solid var(--border-color);
  background-color: white;
  box-shadow: var(--box-shadow-brutalist);
  animation: bounceIn 0.8s ease-out;
}

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

/* === PRIVACY & TERMS PAGES === */
.content-page {
  padding-top: 120px;
  padding-bottom: var(--space-xxl);
}

.content-page .container {
  max-width: 800px;
}

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

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

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

/* === COOKIE CONSENT === */
#cookie-consent {
  border: var(--border-thick) solid var(--text-dark);
  box-shadow: var(--box-shadow-brutalist);
}

#accept-cookies {
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

#accept-cookies:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-md);
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .case-study-image {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .workshops-grid,
  .insights-grid {
    gap: var(--space-lg);
  }
  
  .workshop-card,
  .insight-card {
    flex-direction: column;
  }
  
  .workshop-image,
  .insight-image {
    width: 100%;
    min-height: 200px;
  }
  
  .stat-widget {
    width: 50%;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .partners-grid,
  .resources-grid,
  .awards-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .tabs-header {
    flex-direction: column;
  }
  
  .tab-button {
    width: 100%;
    text-align: center;
  }
  
  .stat-widget {
    width: 100%;
  }
}