/* Variables */
:root {
  /* Base colors */
  --primary-color: #6c5ce7;
  --primary-dark: #5649c0;
  --primary-light: #8878ef;
  --secondary-color: #ff9ff3;
  --secondary-dark: #e57ad4;
  --secondary-light: #ffc0f9;
  --accent-color: #00cec9;
  --accent-dark: #00b3b0;
  --accent-light: #73f5f2;
  
  /* Pastel palette */
  --pastel-blue: #a0c4ff;
  --pastel-purple: #bdb2ff;
  --pastel-pink: #ffafcc;
  --pastel-yellow: #ffd166;
  --pastel-green: #9bf6ff;
  --pastel-orange: #ffcfd2;
  
  /* Neutrals */
  --dark: #2d3436;
  --gray-dark: #636e72;
  --gray-medium: #b2bec3;
  --gray-light: #dfe6e9;
  --light: #f8f9fa;
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Shadows for neuromorphism */
  --nm-shadow-small: 0.3rem 0.3rem 0.6rem var(--gray-medium), -0.2rem -0.2rem 0.5rem var(--light);
  --nm-shadow-medium: 0.5rem 0.5rem 1rem var(--gray-medium), -0.3rem -0.3rem 0.8rem var(--light);
  --nm-shadow-large: 0.8rem 0.8rem 1.4rem var(--gray-medium), -0.5rem -0.5rem 1.2rem var(--light);
  
  /* Inset shadows for pressed buttons */
  --nm-inset-shadow: inset 0.2rem 0.2rem 0.5rem var(--gray-medium), inset -0.2rem -0.2rem 0.5rem var(--light);
  
  /* Border radius */
  --border-radius-small: 8px;
  --border-radius-medium: 16px;
  --border-radius-large: 24px;
  --border-radius-xl: 36px;
  
  /* Transitions */
  --transition-speed: 0.3s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

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

/* Common elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.section:not(:first-child) {
  margin-top: 2rem;
}

.section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  background-color: var(--light);
  transform: rotate(-2deg);
  z-index: -1;
}

/* Neuromorphic elements */
.card, .resource-card, .press-card, .story-card, .innovation-card, .testimonial-item {
  background: var(--light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
  transition: all var(--transition-speed) var(--transition-ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.card:hover, .resource-card:hover, .press-card:hover, .story-card:hover, .innovation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nm-shadow-large);
}

/* Image containers */
.image-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.card:hover .image-container img, 
.press-card:hover .image-container img, 
.story-card:hover .image-container img, 
.innovation-card:hover .image-container img {
  transform: scale(1.05);
}

/* Buttons & Interactive elements */
.button {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-ease);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-speed) var(--transition-ease);
  z-index: -1;
}

.button:hover::before {
  transform: translateX(0);
}

.button.is-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--nm-shadow-small);
}

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

.button.is-light {
  background: var(--light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: var(--nm-shadow-small);
}

.button.is-light:hover {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
  box-shadow: var(--nm-shadow-medium);
}

.button.is-link {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  box-shadow: none;
  text-decoration: underline;
}

.button.is-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.button.is-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed) var(--transition-ease);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(248, 249, 250, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.navbar-brand h1 {
  margin-bottom: 0;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
}

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

.navbar-item {
  margin-left: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-ease);
  position: relative;
}

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

.navbar-item:hover {
  color: var(--primary-color);
}

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

.navbar-burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-speed) var(--transition-ease);
}

/* Hero section */
.hero {
  position: relative;
  height: auto;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.7), rgba(0, 206, 201, 0.7));
}

.hero-body {
  padding: 4rem 0;
  z-index: 1;
}

.hero .title,
.hero .subtitle,
.hero-text {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 90%;
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  animation: fadeInUp 1s var(--transition-ease);
}

.hero .subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s var(--transition-ease) 0.2s both;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1s var(--transition-ease) 0.4s both;
}

.hero .buttons {
  animation: fadeInUp 1s var(--transition-ease) 0.6s both;
}

/* Innovation section */
.innovation-section {
  background-color: var(--pastel-blue);
  position: relative;
  z-index: 1;
}

.innovation-section::before {
  background-color: var(--pastel-blue);
  transform: rotate(-1deg);
}

.innovation-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.innovation-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.innovation-card {
  height: 100%;
  background-color: white;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.innovation-card .card-image {
  height: 250px;
  overflow: hidden;
}

.innovation-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.innovation-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.innovation-card .title.is-4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.innovation-card .title.is-4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.stats-widget {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(108, 92, 231, 0.1);
  border-radius: var(--border-radius-small);
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 600;
}

/* Testimonials section */
.testimonials-section {
  background-color: var(--light);
  position: relative;
  z-index: 1;
}

.testimonials-section::before {
  background-color: var(--light);
}

.testimonials-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.testimonials-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.testimonial-carousel {
  position: relative;
  padding-bottom: 4rem;
}

.testimonial-item {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--nm-shadow-medium);
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  height: 100%;
}

.testimonial-item .image-container {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-small);
}

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

.testimonial-content {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.3;
}

.testimonial-author {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
  background-color: white;
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--nm-shadow-small);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--nm-shadow-medium);
}

/* Customer stories section */
.customer-stories-section {
  background-color: var(--pastel-purple);
  position: relative;
  z-index: 1;
}

.customer-stories-section::before {
  background-color: var(--pastel-purple);
  transform: rotate(1deg);
}

.customer-stories-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.customer-stories-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.story-card {
  height: 100%;
  background-color: white;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.story-card .card-image {
  height: 300px;
  overflow: hidden;
}

.story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.story-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-card .title.is-4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.accordion {
  width: 100%;
  margin-top: 1rem;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: rgba(108, 92, 231, 0.1);
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(108, 92, 231, 0.2);
}

.accordion-header p {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.accordion-header .icon {
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.accordion.active .accordion-header {
  background-color: rgba(108, 92, 231, 0.2);
}

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

.accordion.active .accordion-content {
  max-height: 500px;
  padding: 1rem;
}

/* Resources section */
.resources-section {
  background-color: var(--light);
  position: relative;
  z-index: 1;
}

.resources-section::before {
  background-color: var(--light);
}

.resources-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.resources-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.resource-card {
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--nm-shadow-medium);
  transition: all 0.3s ease;
}

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

.resource-card .title.is-4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.resource-card p {
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

/* Press section */
.press-section {
  background-color: var(--pastel-pink);
  position: relative;
  z-index: 1;
}

.press-section::before {
  background-color: var(--pastel-pink);
  transform: rotate(-1deg);
}

.press-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.press-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.press-card {
  height: 100%;
  background-color: white;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.press-card .card-image {
  height: 250px;
  overflow: hidden;
}

.press-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.press-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card .title.is-5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.press-card p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.press-date {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-medium);
  text-align: right;
}

/* Behind the scenes section */
.behind-scenes-section {
  background-color: var(--pastel-yellow);
  position: relative;
  z-index: 1;
}

.behind-scenes-section::before {
  background-color: var(--pastel-yellow);
  transform: rotate(1deg);
}

.behind-scenes-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.behind-scenes-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 3rem;
}

.methodology-accordion {
  margin-bottom: 3rem;
}

.methodology-accordion .accordion {
  margin-bottom: 1rem;
}

.image-container {
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
}

.stats-widgets {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-small);
  box-shadow: var(--nm-shadow-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 600;
}

/* Contact section */
.contact-section {
  background-color: var(--light);
  position: relative;
  z-index: 1;
}

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

.contact-section .title.is-2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-section .subtitle {
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-item .icon {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.map-container {
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
}

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

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--nm-shadow-medium);
  padding: 2.5rem;
}

.contact-form-container .title.is-4 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input,
.textarea,
.select select {
  background-color: var(--light);
  border-radius: var(--border-radius-small);
  border: 2px solid transparent;
  box-shadow: var(--nm-inset-shadow);
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

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

.textarea {
  min-height: 150px;
}

.select:after {
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--dark);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.footer .title {
  color: white;
}

.footer .title.is-4 {
  margin-bottom: 1.5rem;
}

.footer .title.is-5 {
  margin-bottom: 1rem;
  color: var(--pastel-blue);
}

.footer p {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pastel-blue);
}

.social-links a {
  display: flex;
  align-items: center;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.newsletter .title.is-5 {
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 1rem;
}

.newsletter-form {
  margin-top: 1rem;
}

/* Success page */
.success-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  position: relative;
}

.success-message-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--nm-shadow-large);
}

.success-message-container .image-container {
  max-width: 200px;
  margin: 0 auto 2rem;
}

.success-message-container .title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-message-container .subtitle {
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

.message-content {
  margin-bottom: 2rem;
}

/* Privacy & Terms pages */
.privacy-content,
.terms-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeInUp {
  animation: fadeInUp 1s var(--transition-ease) both;
}

/* Scroll-based animations */
.scroll-trigger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--transition-ease), transform 1s var(--transition-ease);
}

.scroll-trigger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.75rem;
  }
  
  .hero .subtitle {
    font-size: 1.75rem;
  }
  
  .navbar-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-item {
    margin: 0.5rem 0;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .columns:not(.is-desktop) {
    display: block;
  }
  
  .column {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero .title {
    font-size: 2.25rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .testimonial-item {
    flex-direction: column;
  }
  
  .testimonial-item .image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content {
    padding: 0;
  }
  
  .stats-widgets {
    flex-wrap: wrap;
  }
  
  .stat-box {
    width: 48%;
    margin-bottom: 1rem;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}