:root {
  /* Pastel Color Palette */
  --primary-color: #6d9ee3;
  --primary-dark: #5082c7;
  --secondary-color: #e7a9f0;
  --secondary-dark: #c778d1;
  --accent-color: #ffd166;
  --accent-dark: #f7bc4c;
  --neo-accent: #ff6b6b;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2a2d34;
  --bg-footer: #1c1e22;
  --bg-card: #ffffff;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, rgba(42, 45, 52, 0.9), rgba(28, 30, 34, 0.9));
  
  /* Layout */
  --container-width: 1200px;
  --section-spacing: 5rem;
  --card-spacing: 1.5rem;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-sm: 4px;
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.75rem;
  --h4-size: 1.25rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --box-shadow: 0 4px 12px var(--shadow-color);
  --box-shadow-hover: 0 8px 20px var(--shadow-strong);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  
  /* Neo-brutalism */
  --neo-border: 3px solid var(--text-color);
  --neo-shadow: 6px 6px 0px var(--text-color);
  --neo-transform: translate(-3px, -3px);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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 {
  margin-bottom: 1rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

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

/* Section Styles */
section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 25%;
  width: 50%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--heading-font);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.6s;
  transform: skewX(-15deg);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--box-shadow);
}

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

.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-white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-neo {
  border: var(--neo-border);
  box-shadow: var(--neo-shadow);
  background-color: var(--accent-color);
  color: var(--text-color);
  transition: all 0.2s ease;
}

.btn-neo:hover {
  transform: var(--neo-transform);
  box-shadow: none;
  color: var(--text-color);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* 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 rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.75rem;
}

.logo a {
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.nav-desktop {
  display: flex;
}

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

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.nav-list a:hover::after {
  width: 100%;
}

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

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.burger-menu.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-medium);
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-list-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list-mobile li {
  margin-bottom: 1rem;
}

.nav-list-mobile a {
  color: var(--text-color);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  margin-top: 0;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: var(--text-shadow);
  color: var(--text-white);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: var(--text-shadow);
  color: var(--text-white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Features Section */
.features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-light);
}

.progress-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.progress-item h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 0;
  transition: width 1.5s ease-out;
  border-radius: 4px;
}

.progress-text {
  position: absolute;
  right: 0;
  top: -25px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Methodology Section */
.methodology {
  background-color: var(--bg-card);
  position: relative;
}

.methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pattern-bg.jpg') repeat;
  background-size: 200px;
  opacity: 0.05;
  z-index: 0;
}

.methodology-carousel {
  position: relative;
  z-index: 1;
}

.carousel-container {
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-medium);
}

.carousel-slide {
  min-width: 100%;
  padding: 1rem;
}

.methodology-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 1.5rem;
}

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

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

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

.card-content {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-content p {
  color: var(--text-light);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.prev-btn, .next-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Resources Section */
.resources {
  background-color: var(--bg-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  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-hover);
}

.resource-icon {
  margin-bottom: 1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.resource-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.resource-link {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Insights Section */
.insights {
  background-color: var(--bg-card);
}

.insights-gallery {
  position: relative;
}

.gallery-container {
  height: 500px;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-medium);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-item.active {
  opacity: 1;
  z-index: 1;
}

.gallery-content {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

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

.gallery-content h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.gallery-content p {
  color: var(--text-light);
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--bg-light);
}

.scenes-grid {
  display: grid;
  gap: 3rem;
}

.scene-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.scene-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 300px;
}

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

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

.scene-content h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.scene-content p {
  color: var(--text-light);
}

/* Careers Section */
.careers {
  background-color: var(--bg-card);
  position: relative;
}

.careers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pattern-dots.jpg') repeat;
  background-size: 100px;
  opacity: 0.05;
  z-index: 0;
}

.careers-container {
  position: relative;
  z-index: 1;
}

.career-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.career-list {
  display: grid;
  gap: 2rem;
}

.career-item {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-medium);
}

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

.career-item h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.career-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.location, .type {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-weight: 500;
}

.location::before, .type::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-right: 0.5rem;
}

.career-item p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.career-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.career-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  background-color: var(--bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.info-item p {
  color: var(--text-light);
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 1.5rem;
}

.contact-form {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(109, 158, 227, 0.1);
}

textarea.form-control {
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--bg-footer);
  color: var(--text-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

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

.footer-links li, .footer-legal li {
  margin-bottom: 0.75rem;
}

.footer-links a, .footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-links a:hover, .footer-legal a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
  display: inline-block;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: var(--body-font);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form .btn {
  padding: 0.75rem 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 45, 52, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  margin-right: 1rem;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
}

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

/* Additional Pages Styles */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 400px);
}

.success-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

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

.success-content h1 {
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
}

/* Neo-brutalism Card */
.neo-card {
  background-color: var(--bg-card);
  border: var(--neo-border);
  box-shadow: var(--neo-shadow);
  padding: 2rem;
  transition: all 0.2s ease;
}

.neo-card:hover {
  transform: var(--neo-transform);
  box-shadow: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2.25rem;
    --h3-size: 1.5rem;
  }
  
  .scene-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .feature-card, .methodology-card, .resource-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.35rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .features-grid, .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-container {
    height: 600px;
  }
  
  .gallery-content {
    padding: 1.5rem;
    max-width: 90%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-content p {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    height: 700px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .career-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Animation Utilities */
.animate-particle {
  animation: float 20s infinite linear;
}

.hover-lift {
  transition: transform var(--transition-medium);
}

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

.read-more-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.5rem;
  position: relative;
  padding-right: 1.5rem;
}

.read-more-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more-link:hover::after {
  transform: translate(5px, -50%);
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.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;
}