:root {
  /* Main Colors - Neo-Brutalist Retro Theme */
  --primary-color: #FF5733; /* Vibrant orange-red */
  --primary-dark: #D13000;
  --secondary-color: #33B5FF; /* Complementary blue */
  --secondary-dark: #0077CC;
  --accent-color: #FFD733; /* Accent yellow */
  --accent-dark: #CCAA00;
  
  /* Neutral Colors */
  --dark: #121212;
  --dark-gray: #333333;
  --medium-gray: #555555;
  --light-gray: #AAAAAA;
  --off-white: #F5F5F5;
  --white: #FFFFFF;
  
  /* UI Colors */
  --success: #4CAF50;
  --warning: #FFC107;
  --danger: #F44336;
  --info: #2196F3;
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Animation Duration */
  --duration-fast: 0.2s;
  --duration-medium: 0.3s;
  --duration-slow: 0.5s;
}

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

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

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

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

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  text-transform: uppercase;
}

h2:after {
  content: '';
  display: block;
  width: 100px;
  height: 6px;
  background-color: var(--primary-color);
  margin-top: 10px;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--duration-medium) ease;
  text-align: center;
  font-size: 1rem;
}

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

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

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

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

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

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

/* Two Column Layout */
.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-items: center;
  margin: var(--spacing-md) 0;
}

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

.column.is-two-thirds {
  flex: 2;
}

.image-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

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

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

/* Header & Navigation */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
}

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

.logo a {
  color: var(--dark);
}

.desktop-nav ul {
  display: flex;
}

.desktop-nav li {
  margin-left: var(--spacing-sm);
}

.desktop-nav a {
  color: var(--dark-gray);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  transition: all var(--duration-fast) ease;
}

.desktop-nav a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 87, 51, 0.1);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-gray);
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  padding: 0 var(--spacing-sm);
}

.mobile-nav ul {
  padding: var(--spacing-sm) 0;
}

.mobile-nav li {
  margin-bottom: var(--spacing-sm);
}

.mobile-nav a {
  color: var(--dark-gray);
  font-weight: 600;
  display: block;
  padding: var(--spacing-xs) 0;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: 150px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* Stats Section */
.stats {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.stats h2 {
  text-align: center;
}

.stats-widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: var(--spacing-md);
  text-align: center;
  background-color: var(--off-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-medium) ease;
}

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

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

.stat-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
}

/* About Section */
.despre-noi {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

/* Research Section */
.cercetare {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.research-topics {
  margin-top: var(--spacing-lg);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.topic-card {
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.topic-card h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Why Us Section */
.de-ce-noi {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.why-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
}

.why-us-image {
  flex: 1;
  min-width: 300px;
}

.why-us-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-us-text {
  flex: 1;
  min-width: 300px;
}

.why-us-points {
  margin-top: var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.point {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.point h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

/* Resources Section */
.resurse-externe {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
  text-align: center;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.resource-card {
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-color);
  color: var(--white);
}

.resource-card:hover h3,
.resource-card:hover p {
  color: var(--white);
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  transition: color var(--duration-medium) ease;
}

/* Success Stories Section */
.povesti {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.success-carousel {
  margin: var(--spacing-md) 0;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform var(--duration-slow) ease;
}

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

.success-story {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  border-radius: var(--border-radius-md);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.story-content {
  flex: 2;
  min-width: 300px;
}

.company-info {
  color: var(--light-gray);
  margin-bottom: var(--spacing-sm);
  font-style: italic;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.carousel-prev,
.carousel-next {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: background-color var(--duration-fast) ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-dark);
}

/* Insights Section */
.insights {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.insight-chart {
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.chart-legend li {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
}

/* Behind the Scenes Section */
.behind-the-scenes {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.scenes-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
}

.scene-image {
  flex: 1;
  min-width: 300px;
}

.scene-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.scene-text {
  flex: 1;
  min-width: 300px;
}

/* FAQ Section */
.faq {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--light-gray);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--spacing-sm) 0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color var(--duration-fast) ease;
}

.faq-question:hover h3 {
  color: var(--primary-color);
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--duration-medium) ease;
}

.faq-item.active .faq-answer {
  padding: var(--spacing-sm) 0 var(--spacing-md);
  max-height: 1000px;
}

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

/* News & Events Section */
.news {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

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

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

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

.news-image {
  width: 100%;
  height: 200px;
}

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

.news-content {
  padding: var(--spacing-md);
  text-align: center;
}

.news-date {
  display: block;
  color: var(--light-gray);
  margin-bottom: var(--spacing-xs);
  font-style: italic;
}

.news-content h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

/* Awards Section */
.awards {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
  text-align: center;
}

.awards-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.award-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.award-icon {
  width: 120px;
  height: 120px;
  margin-bottom: var(--spacing-sm);
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Sustainability Section */
.sustainability {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

/* Press Section */
.press {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.press-mentions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.press-item {
  flex: 1;
  min-width: 300px;
  background-color: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-medium) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.press-logo {
  width: 150px;
  height: 80px;
  margin-bottom: var(--spacing-sm);
}

.press-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

blockquote {
  font-style: italic;
  margin: var(--spacing-sm) 0;
  position: relative;
  padding: 0 var(--spacing-sm);
}

blockquote:before,
blockquote:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

blockquote:before {
  left: 0;
  top: -10px;
}

blockquote:after {
  right: 0;
  bottom: -20px;
}

cite {
  font-weight: 600;
  color: var(--primary-color);
}

/* Calendar Section */
.calendar {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

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

.event {
  display: flex;
  margin-bottom: var(--spacing-md);
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--duration-medium) ease;
}

.event:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: var(--spacing-sm);
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.month {
  font-weight: 700;
  text-transform: uppercase;
}

.day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.year {
  font-size: 0.9rem;
}

.event-details {
  padding: var(--spacing-md);
  flex: 1;
}

.event-location {
  color: var(--light-gray);
  margin-bottom: var(--spacing-xs);
  font-style: italic;
}

.calendar-cta {
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Blog Section */
.blog {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

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

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

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

.blog-image {
  width: 100%;
  height: 200px;
}

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

.blog-content {
  padding: var(--spacing-md);
  text-align: center;
}

.blog-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.read-more {
  display: inline-block;
  margin-top: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.read-more:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--duration-medium) ease;
}

.read-more:hover:after {
  width: 100%;
}

.blog-cta {
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Contact Section */
.contact {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

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

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

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

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

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

input[type='text'],
input[type='email'],
input[type='tel'],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--duration-fast) ease;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--light-gray);
  padding-top: var(--spacing-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--medium-gray);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

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

.footer-logo p {
  color: var(--light-gray);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

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

.footer-column h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
  color: var(--light-gray);
  transition: color var(--duration-fast) ease, transform var(--duration-fast) ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.social-links a {
  display: flex;
  align-items: center;
  color: var(--light-gray);
  transition: color var(--duration-fast) ease;
}

.social-links a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: currentColor;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.social-links a[href*="facebook.com"]:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter.com"]:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath 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'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath 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'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram.com"]:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath 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'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath 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'/%3E%3C/svg%3E");
}

.social-links a[href*="linkedin.com"]:before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z'/%3E%3C/svg%3E");
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

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

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

.success-message {
  max-width: 600px;
}

.success-message h1 {
  margin-bottom: var(--spacing-sm);
}

.success-message p {
  margin-bottom: var(--spacing-md);
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content h2,
.terms-content h2 {
  margin-top: var(--spacing-lg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .why-us-content,
  .scenes-content {
    flex-direction: column;
  }
  
  .footer-content,
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contacts {
    margin-top: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .two-columns {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .success-story,
  .event {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: var(--spacing-sm);
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .stat-card {
    min-width: 100%;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .awards-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .press-mentions {
    flex-direction: column;
  }
}