:root {
  /* Color Palette */
  --primary-color: #4a6bdf;
  --primary-dark: #3553b2;
  --primary-light: #7590f5;
  --secondary-color: #6c3ce4;
  --secondary-dark: #5027b5;
  --secondary-light: #8a68f0;
  --accent-color: #ff7d4d;
  --accent-dark: #e65a29;
  --accent-light: #ff9e7a;
  
  /* Neutral Colors */
  --dark: #2d2d3a;
  --dark-medium: #3f3f53;
  --medium: #6e6e8a;
  --light-medium: #9898b2;
  --light: #e6e6f0;
  --white: #ffffff;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-light) 100%);
  --dark-gradient: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
  --light-gradient: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  
  /* Shadows */
  --neomorphic-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7);
  --neomorphic-shadow-pressed: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  position: relative;
  margin-bottom: var(--space-xl);
  color: var(--dark);
}

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

.has-text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Global Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
}

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

/* Neomorphic Elements */
.neomorphic-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--neomorphic-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
}

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

.neomorphic-btn {
  background: var(--primary-gradient);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.neomorphic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.neomorphic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.neomorphic-btn:hover::before {
  opacity: 1;
}

.neomorphic-btn:active {
  transform: translateY(1px);
  box-shadow: var(--neomorphic-shadow-pressed);
}

.neomorphic-btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.neomorphic-input, .neomorphic-select select {
  background-color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.1), inset -3px -3px 7px rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  transition: box-shadow var(--transition-medium);
}

.neomorphic-input:focus, .neomorphic-select select:focus {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  outline: none;
}

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

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
}

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

.logo-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
}

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

.navbar-menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar-item {
  color: var(--dark);
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
}

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

.navbar-burger {
  color: var(--dark);
  width: 3.25rem;
  height: 3.25rem;
}

/* Media query for mobile navigation */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-end {
    display: flex;
    flex-direction: column;
  }

  .navbar-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light);
  }

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

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  margin-top: 70px;
}

.hero.is-fullheight {
  min-height: calc(100vh - 70px);
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 45, 58, 0.7) 0%, rgba(74, 107, 223, 0.7) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--space-xxl) 0;
  display: flex;
  align-items: center;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--white);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-medium);
  width: 150px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-down-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-circle);
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition-fast), transform var(--transition-medium);
  animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

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

/* History Section */
.histoire-section {
  position: relative;
  background-color: var(--white);
}

.histoire-section .image-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

.histoire-section .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Gallery/Services Section */
.gallery-section {
  position: relative;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

.service-card .card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

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

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

.service-card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

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

.resource-card {
  height: 100%;
  transition: transform var(--transition-medium);
}

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

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

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

.resource-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Success Stories Section */
.success-stories-section {
  position: relative;
}

.testimonial-carousel {
  position: relative;
  padding-bottom: var(--space-xl);
}

.testimonial-slide {
  display: none;
  animation: fadeIn var(--transition-slow);
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-content {
  position: relative;
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: var(--space-md);
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: var(--space-xs);
}

.carousel-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.prev-btn, .next-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  border-radius: var(--radius-circle);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-circle);
  margin: 0 5px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.dot.active, .dot:hover {
  background: var(--white);
}

/* Instructors Section */
.instructors-section {
  background-color: var(--white);
}

.instructor-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

.instructor-card .card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.instructor-card .image-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

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

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

.social-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Webinars Section */
.webinars-section {
  position: relative;
}

.webinar-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

.webinar-date {
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.webinar-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.webinar-info {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.webinar-info p {
  margin-bottom: var(--space-xs);
}

.webinar-info p:last-child {
  margin-bottom: 0;
}

/* Partners Section */
.partners-section {
  background-color: var(--white);
}

.partners-slider {
  margin-bottom: var(--space-xl);
}

.partner-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  transition: transform var(--transition-medium);
}

.partner-logo:hover img {
  transform: scale(1.1);
}

.corporate-testimonial {
  position: relative;
  padding: var(--space-lg);
  background-color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--neomorphic-shadow);
}

.corporate-testimonial p {
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}

.corporate-testimonial p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Community Section */
.community-section {
  position: relative;
}

.community-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
  background-color: var(--white);
}

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

.community-stats {
  margin-top: var(--space-lg);
  background-color: var(--white);
}

.stat-box {
  text-align: center;
  padding: var(--space-md);
}

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

.stat-box .stat-label {
  font-size: 1rem;
  color: var(--dark);
}

.community-gallery {
  margin-top: var(--space-xl);
}

.community-gallery .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

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

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

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

.contact-info {
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-item .icon {
  margin-right: var(--space-md);
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-form {
  height: 100%;
}

.contact-form .label {
  color: var(--dark);
  font-weight: 500;
}

.social-links .button {
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.footer-links a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.footer .social-links a {
  color: var(--light-medium);
  margin-right: var(--space-md);
  transition: color var(--transition-fast);
}

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

.footer-divider {
  margin: var(--space-lg) 0;
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: var(--space-sm) 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--light-medium);
  margin-left: var(--space-md);
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: var(--space-sm);
    justify-content: center;
  }
  
  .legal-links a {
    margin: 0 var(--space-xs);
  }
}

/* Animation Classes */
.animate-element {
  opacity: 0;
  transition: all var(--transition-slow);
}

.fade-in {
  animation: fadeIn 1s forwards;
}

.fade-in-delay {
  animation: fadeIn 1s 0.3s forwards;
}

.fade-in-delay-2 {
  animation: fadeIn 1s 0.6s forwards;
}

.fade-in-delay-3 {
  animation: fadeIn 1s 0.9s forwards;
}

.fade-in-delay-4 {
  animation: fadeIn 1s 1.2s forwards;
}

.fade-in-delay-5 {
  animation: fadeIn 1s 1.5s forwards;
}

.slide-in-left {
  animation: slideInLeft 1s forwards;
}

.slide-in-right {
  animation: slideInRight 1s forwards;
}

.slide-in-left-delay {
  animation: slideInLeft 1s 0.3s forwards;
}

.slide-in-right-delay {
  animation: slideInRight 1s 0.3s forwards;
}

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

@keyframes slideInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-50px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from { 
    opacity: 0; 
    transform: translateX(50px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

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

.success-card {
  max-width: 600px;
  padding: var(--space-xl);
  animation: fadeInUp 1s forwards;
}

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

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

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 150px;
  padding-bottom: var(--space-xxl);
  background-color: var(--white);
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

/* About Page */
.about-page {
  padding-top: 150px;
  padding-bottom: var(--space-xxl);
  background-color: var(--white);
}

.about-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.team-section, .values-section, .mission-section {
  margin-bottom: var(--space-xxl);
}

/* Contacts Page */
.contacts-page {
  padding-top: 150px;
  padding-bottom: var(--space-xxl);
  background-color: var(--white);
}

.map-container {
  height: 400px;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  :root {
    --space-xxl: 4rem;
  }
  
  .stat-card {
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-xxl: 3.5rem;
  }
  
  .hero.is-fullheight {
    min-height: calc(100vh - 70px);
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card {
    width: 100%;
    max-width: 200px;
  }
  
  .section-title {
    font-size: 1.75rem !important;
  }
  
  .testimonial-slide .column.is-one-quarter {
    padding-bottom: var(--space-md);
  }
}

@media screen and (max-width: 576px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .hero .title.is-1 {
    font-size: 2rem !important;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem !important;
  }
  
  .section-title {
    font-size: 1.5rem !important;
  }
}

/* Cookie Consent Popup */
#cookie-consent-popup {
  border-top: 4px solid var(--primary-color);
}

#accept-cookies {
  background: var(--primary-gradient) !important;
  transition: all var(--transition-fast);
}

#accept-cookies:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}