/* Base Variables & Resets */
:root {
  /* Color Scheme - Monochromatic */
  --primary-color: #3b60e4;
  --primary-light: #6384ff;
  --primary-dark: #2745b2;
  --primary-ultra-light: #eef1ff;
  --primary-ultra-dark: #1a2b66;
  
  /* Neutrals */
  --neutral-black: #111111;
  --neutral-dark: #333333;
  --neutral-medium: #666666;
  --neutral-light: #999999;
  --neutral-ultra-light: #f5f5f7;
  --neutral-white: #ffffff;
  
  /* Functional Colors */
  --success-color: #34D399;
  --warning-color: #FBBF24;
  --error-color: #EF4444;
  
  /* Typography */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Spacings */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-indices */
  --z-negative: -1;
  --z-elevate: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-toast: 600;
}

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

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

body {
  font-family: var(--body-font);
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0px !important;
}

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(--neutral-black);
}

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

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

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

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

.section-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section-header .title {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-header .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

.section-header .subtitle {
  color: var(--neutral-medium);
  font-size: 1.2rem;
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

/* Animation Utility Classes */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all var(--transition-normal);
  z-index: -1;
}

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

.button:hover, .button:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--neutral-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.button.is-outlined {
  background-color: transparent;
  color: var(--primary-color);
}

.button.is-outlined:hover, .button.is-outlined:focus {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

.button.is-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  width: 100%;
}

.animated-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  border-radius: var(--radius-md);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.animated-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Form Styles */
.input, .textarea, .select select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--neutral-light);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

.input:focus, .textarea:focus, .select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 96, 228, 0.2);
}

.label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neutral-dark);
}

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

.field-body {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.field-body .field {
  flex: 1;
  min-width: 200px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

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

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
}

.navbar.is-transparent {
  background-color: transparent;
  box-shadow: none;
}

.navbar.is-scrolled {
  background-color: var(--neutral-white);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.navbar-item {
  color: var(--neutral-dark);
  padding: var(--space-sm) var(--space-md);
  margin: 0 var(--space-xs);
  font-weight: 500;
  transition: color var(--transition-normal);
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.navbar-item:hover, .navbar-item:focus, .navbar-item.is-active {
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-item:hover::after, .navbar-item:focus::after, .navbar-item.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
  background-color: transparent;
  border: none;
}

.navbar-burger span {
  display: block;
  position: absolute;
  left: calc(50% - 8px);
  width: 16px;
  height: 2px;
  background-color: var(--neutral-dark);
  transition: all var(--transition-normal);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50%);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  margin-top: 0;
}

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

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

.hero-body {
  position: relative;
  width: 100%;
  z-index: var(--z-elevate);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--neutral-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--neutral-white);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--neutral-white);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

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

.hero-stat-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: var(--space-md) 0;
  z-index: var(--z-elevate);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

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

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

/* About Section Styles */
.about-section {
  background-color: var(--neutral-white);
}

.about-content {
  padding-right: var(--space-lg);
}

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

.about-features {
  margin-top: var(--space-lg);
}

.about-feature {
  margin-bottom: var(--space-md);
}

.about-feature h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

/* Services Section Styles */
.services-section {
  background-color: var(--primary-ultra-light);
  position: relative;
  overflow: hidden;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

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

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

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

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .title {
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
}

.tag {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--primary-ultra-light);
  color: var(--primary-dark);
}

/* Resources Section Styles */
.resources-section {
  background-color: var(--neutral-white);
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.resource-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.resource-card .description {
  margin-bottom: var(--space-md);
}

.resource-card .button {
  margin-top: auto;
}

/* Team Section Styles */
.team-section {
  background-color: var(--primary-ultra-light);
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

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

.team-card .card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-card .image {
  width: 100%;
  overflow: hidden;
}

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

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

.team-card .title {
  margin-bottom: var(--space-xs);
}

.team-card .subtitle {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--neutral-medium);
}

/* News Section Styles */
.news-section {
  background-color: var(--neutral-white);
}

.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

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

.news-date {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.news-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Press Section Styles */
.press-section {
  background-color: var(--primary-ultra-light);
  padding: var(--space-xl) 0;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.press-logos img {
  height: 50px;
  width: auto;
  margin: var(--space-md);
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.press-logos img:hover {
  opacity: 1;
}

.press-quotes {
  margin-top: var(--space-xl);
}

.press-quote {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.press-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: var(--heading-font);
}

.press-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.press-quote cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
}

/* Case Studies Section Styles */
.case-studies-section {
  background-color: var(--neutral-white);
}

.case-study-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

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

.case-study-card .subtitle {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.case-study-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-ultra-light);
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.result-value {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.result-label {
  font-size: 0.8rem;
  color: var(--neutral-medium);
}

/* Events Section Styles */
.events-section {
  background-color: var(--primary-ultra-light);
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-white);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--neutral-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  width: 120px;
}

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

.date-month {
  font-size: 1rem;
  margin-top: var(--space-xs);
}

.date-year {
  font-size: 0.8rem;
  opacity: 0.8;
}

.event-location {
  font-size: 0.9rem;
  color: var(--neutral-medium);
  margin-bottom: var(--space-md);
}

.event-description {
  margin-bottom: var(--space-lg);
}

/* Gallery Section Styles */
.gallery-section {
  background-color: var(--neutral-white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-text {
  color: var(--neutral-white);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: var(--space-md);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-item:hover .gallery-text {
  transform: translateY(0);
}

/* Contact Section Styles */
.contact-form-top {
  padding-top: 120px;
  background-color: var(--neutral-white);
}

.contact-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  background-color: var(--neutral-white);
}

.contact-section {
  background-color: var(--primary-ultra-light);
}

.contact-form {
  width: 100%;
}

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

.contact-item {
  margin-bottom: var(--space-lg);
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.contact-form-container {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

/* Footer Styles */
.footer {
  background-color: var(--primary-ultra-dark);
  color: var(--neutral-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer .title {
  color: var(--neutral-white);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: var(--space-sm);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer p {
  margin-bottom: var(--space-md);
  color: var(--neutral-light);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--neutral-light);
  transition: color var(--transition-normal);
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--neutral-white);
  text-decoration: none;
}

.social-links {
  margin: var(--space-lg) 0;
}

.social-links a {
  color: var(--neutral-light);
  margin-right: var(--space-md);
  transition: color var(--transition-normal);
  display: inline-block;
  position: relative;
}

.social-links a:hover, .social-links a:focus {
  color: var(--neutral-white);
  text-decoration: none;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.social-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.newsletter-form {
  margin-top: var(--space-md);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--neutral-light);
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.modal-close {
  background-color: var(--neutral-white);
}

/* Cookie Consent Styles */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--neutral-white);
  padding: var(--space-lg);
  z-index: 9999;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content .button {
  flex-shrink: 0;
}

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

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

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

.success-title {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.success-message {
  margin-bottom: var(--space-lg);
  color: var(--neutral-medium);
}

/* Terms and Privacy Pages Styles */
.terms-page, .privacy-page {
  padding-top: 120px;
}

.terms-container, .privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.terms-title, .privacy-title {
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
  text-align: center;
}

.terms-content, .privacy-content {
  margin-bottom: var(--space-lg);
}

.terms-content h3, .privacy-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-header .title {
    font-size: 2.2rem;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md);
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-item {
    width: 100%;
    padding: var(--space-sm) 0;
    margin: var(--space-xs) 0;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .hero-stat-container {
    position: relative;
    margin-top: var(--space-lg);
  }
  
  .press-quote {
    margin-bottom: var(--space-lg);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .section-header .title {
    font-size: 2rem;
  }
  
  .stat-box {
    padding: var(--space-sm);
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: var(--space-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .contact-form-container, .contact-box {
    padding: var(--space-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content .button {
    width: 100%;
    margin-top: var(--space-md);
  }
}

@media screen and (max-width: 479px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header .title {
    font-size: 1.8rem;
  }
  
  .event-date {
    width: 100px;
  }
  
  .date-day {
    font-size: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: var(--space-md);
  }
  
  .gallery-text {
    font-size: 1rem;
  }
}

/* Animation Styles */
.parallax-bg {
  transform: translateZ(-1px) scale(2);
}

.rotate-on-scroll {
  transition: transform 0.5s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}