/* Reset and Base Styles */
:root {
  /* Primary colors */
  --primary-color: #1a6bc2;
  --primary-light: #3b8df7;
  --primary-dark: #0d4b92;
  
  /* Secondary colors */
  --secondary-color: #ff5722;
  --secondary-light: #ff8a65;
  --secondary-dark: #e64a19;
  
  /* Accent colors */
  --accent-color: #00bcd4;
  --accent-light: #4dd0e1;
  --accent-dark: #0097a7;
  
  /* Neutral colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #2c3e50;
  
  /* Gradient definitions */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-dark: linear-gradient(135deg, var(--background-dark), #1a2a38);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-full: 50%;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  
  /* Transition speeds */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

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

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

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

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

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

/* Read more links */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: var(--spacing-sm);
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-fast) ease;
}

.read-more:hover:after {
  transform: translateX(4px);
}

/* Button Styles */
.button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium) cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.button:active {
  transform: translateY(0);
}

.button.is-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.button.is-secondary {
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.button.is-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
}

.button.is-outlined {
  background: transparent;
  border: 2px solid currentColor;
}

.button.is-outlined.is-white {
  color: var(--text-light);
  border-color: var(--text-light);
}

.button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.buttons.is-centered {
  justify-content: center;
}

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

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

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .title {
  margin-bottom: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin-left: var(--spacing-lg);
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium) ease;
}

.navbar-item:hover:after {
  width: 100%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  background: none;
  border: none;
}

.navbar-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-dark);
  position: absolute;
  left: 5px;
  transition: all var(--transition-medium) ease-in-out;
}

.navbar-burger span:nth-child(1) {
  top: 12px;
}

.navbar-burger span:nth-child(2) {
  top: 20px;
}

.navbar-burger span:nth-child(3) {
  top: 28px;
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.hero.is-fullheight {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background:before {
  content: '';
  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-body {
  width: 100%;
  padding: var(--spacing-xxl) 0;
  z-index: 1;
}

.hero .title, 
.hero .subtitle,
.hero p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
}

.hero .subtitle {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

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

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  flex: 1;
  min-width: 180px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* History Section */
.history-section {
  background-color: var(--background-light);
}

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

.history-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: var(--spacing-xl);
}

.timeline-marker {
  position: absolute;
  top: 6px;
  left: 40px;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline-content .title {
  margin-bottom: var(--spacing-sm);
}

/* Behind Scenes Section */
.behind-scenes-section {
  background-color: #fff;
}

.behind-scenes-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.behind-scenes-content .image-container {
  height: 250px;
  overflow: hidden;
}

.behind-scenes-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium) ease;
}

.behind-scenes-content:hover img {
  transform: scale(1.05);
}

.behind-scenes-content .title,
.behind-scenes-content p {
  padding: 0 var(--spacing-lg);
}

.behind-scenes-content p {
  margin-bottom: var(--spacing-lg);
}

/* Success Stories Section */
.success-stories-section {
  background-color: var(--background-light);
}

.success-story-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

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

.success-story-card .card-image {
  overflow: hidden;
}

.success-story-card .image-container {
  height: 200px;
}

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

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

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

.success-story-card .company {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-story-card .tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

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

.tag.is-info {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.tag.is-success {
  background-color: #48c774;
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #fff;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

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

.testimonial-quote {
  position: relative;
  padding: var(--spacing-lg) 0;
  flex-grow: 1;
}

.testimonial-quote i.fa-quote-left {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.testimonial-quote i.fa-quote-right {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.5rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-lg);
}

.author-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: var(--border-radius-full);
  margin-right: var(--spacing-md);
  border: 3px solid var(--primary-light);
}

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

.author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.author-position {
  font-size: 0.9rem;
  color: #777;
}

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

.resource-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card .card-content {
  padding: var(--spacing-lg);
}

.resource-card a {
  color: var(--primary-color);
  transition: color var(--transition-fast) ease;
}

.resource-card a:hover {
  color: var(--primary-light);
}

.resource-card .button {
  margin-top: var(--spacing-md);
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.ribbon {
  position: absolute;
  right: -5px;
  top: 20px;
  z-index: 1;
  overflow: hidden;
  width: 100px;
  height: 30px;
  text-align: center;
  color: var(--text-light);
  background: var(--secondary-color);
  transform: rotate(45deg);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
}

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

.price {
  margin: var(--spacing-lg) 0;
  line-height: 1;
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.period {
  font-size: 1.1rem;
  color: #777;
}

.features {
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.features ul {
  list-style: none;
}

.features li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.features li i {
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

/* Press Section */
.press-section {
  background-color: var(--background-light);
}

.press-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease;
}

.press-card:hover {
  transform: translateY(-5px);
}

.press-card .card-image {
  overflow: hidden;
}

.press-card .image-container {
  height: 200px;
}

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

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

.press-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

.press-source {
  font-style: italic;
  color: #777;
  margin-bottom: var(--spacing-md);
}

/* Insights Section */
.insights-section {
  background-color: #fff;
}

.insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease;
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-card .card-image {
  overflow: hidden;
}

.insight-card .image-container {
  height: 250px;
}

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

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

.insight-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

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

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium) ease;
  position: relative;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card .card-image {
  position: relative;
  overflow: hidden;
}

.event-card .image-container {
  height: 200px;
}

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

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

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 70px;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-align: center;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

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

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

.event-details {
  margin-bottom: var(--spacing-md);
  color: #777;
}

.event-details i {
  margin-right: var(--spacing-xs);
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: #fff;
}

.contact-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info {
  padding: var(--spacing-lg);
}

.contact-info p {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
}


.social-links h4 {
  margin-bottom: var(--spacing-md);
}

.social-icons {
  display: flex;
  gap: var(--spacing-md);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: var(--border-radius-full);
  transition: transform var(--transition-fast) ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.contact-form {
  padding: var(--spacing-lg);
}

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

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

.input, 
.textarea, 
.select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-family: 'Lato', sans-serif;
  transition: border-color var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.input:focus, 
.textarea:focus, 
.select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 107, 194, 0.2);
}

.select {
  position: relative;
  display: block;
  width: 100%;
}

.select:after {
  content: '↓';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

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

/* Map Section */
.map-section {
  height: 450px;
}

.map-container {
  height: 100%;
  width: 100%;
}

.map-container iframe {
  border: none;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--text-light);
  padding: var(--spacing-xxl) 0;
}

.footer .title {
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast) ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer .social-links {
  margin-top: var(--spacing-md);
}

.footer .social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: var(--spacing-md);
  transition: color var(--transition-fast) ease;
}

.footer .social-links a:hover {
  color: var(--text-light);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.9);
  color: white;
  z-index: 9999;
  padding: var(--spacing-lg);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
  margin-right: var(--spacing-md);
  flex: 1;
}

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

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

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

.success-icon {
  font-size: 5rem;
  color: #48c774;
  margin-bottom: var(--spacing-lg);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xxl);
}

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

/* Image Container Styles */
.image-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.card .image-container {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

/* Helper Classes */
.mb-6 {
  margin-bottom: 3rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.has-text-centered {
  text-align: center !important;
}

.has-text-white {
  color: var(--text-light) !important;
}

.is-fullwidth {
  width: 100% !important;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md);
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-menu.is-active {
    display: flex;
  }
  
  .navbar-item {
    margin-left: 0;
    margin-bottom: var(--spacing-md);
    width: 100%;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: var(--spacing-md);
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .columns {
    display: block;
  }

  .contact-info p {
    flex-direction: column;
  }

  .contact-form-section {
    padding: 0;
  }
  
  .column {
    width: 100% !important;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .history-timeline:before {
    left: 25px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-marker {
    left: 15px;
  }
  .navbar-brand {
    width: 100%;
  }
  .navbar-item {
    flex-shrink: unset !important;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content button {
    width: 100%;
    margin-top: var(--spacing-md);
  }
  
  .contact-form,
  .contact-info {
    padding: var(--spacing-md);
  }
}

@media screen and (max-width: 480px) {
  :root {
    --spacing-xxl: 32px;
  }
  
  .hero .title {
    font-size: 1.75rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bounce {
  animation: bounce 2s infinite;
}
