/* ======================================
   VARIABLES AND BASE STYLES
====================================== */

:root {
  /* Primary Colors - Analogous scheme */
  --primary-color: #3a7bd5;
  --primary-light: #4f8fe8;
  --primary-dark: #2a5da0;
  
  /* Secondary Colors */
  --secondary-color: #36d1dc;
  --secondary-light: #5edbf0;
  --secondary-dark: #29a3ab;
  
  /* Accent Colors */
  --accent-color: #6d5dfc;
  --accent-light: #8677ff;
  --accent-dark: #5345c5;
  
  /* Neutral Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #1a1a2e;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-round: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

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

.subtitle {
  color: var(--text-medium);
  font-weight: 500;
}

p {
  margin-bottom: 1.5rem;
}

/* ======================================
   BIOMORPHIC DESIGN ELEMENTS
====================================== */

.biomorphic-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  margin: 1rem auto 2rem;
  border-radius: var(--border-radius-round);
}

.biomorphic-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  border-radius: 50%;
}

.shape-1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
}

.shape-2 {
  bottom: -100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: var(--secondary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ======================================
   GLOBAL COMPONENTS
====================================== */

/* Buttons */
.button {
  transition: all var(--transition-normal);
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transition: all 0.3s ease;
  z-index: -1;
}

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

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(58, 123, 213, 0.4);
  transform: translateY(-2px);
}

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

.button.is-rounded {
  border-radius: var(--border-radius-round);
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.button.is-large {
  font-size: 1.2rem;
  height: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

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

.image-container, .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-image img, .image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

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

.card-content h3 {
  margin-bottom: 1rem;
}

.card-content p {
  flex-grow: 1;
}

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

/* Images and Media */
img {
  max-width: 100%;
  height: auto;
}

.image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

/* ======================================
   HEADER & NAVIGATION
====================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.is-transparent {
  background-color: transparent;
}

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

.navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

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

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent !important;
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
  left: calc(50% - 10px);
  background-color: var(--text-dark);
}

/* Mobile Menu */
@media screen and (max-width: 1023px) {
  .navbar-menu.is-active {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ======================================
   HERO SECTION
====================================== */

.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}

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

.hero .title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.hero .buttons {
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}

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

/* ======================================
   MISSION SECTION
====================================== */

.mission-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.mission-section .content {
  margin-bottom: 2rem;
}

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

.mission-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

/* ======================================
   SERVICES SECTION
====================================== */

.services-section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--background-light);
}

.service-card {
  height: 100%;
  margin-bottom: 2rem;
}

.service-card .card-image {
  height: 250px;
}

.service-card img {
  transition: transform 0.5s ease;
}

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

.service-card .title {
  color: var(--primary-dark);
}

/* ======================================
   STATISTICS SECTION
====================================== */

.statistics-section {
  padding: 5rem 1.5rem;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background-color: white;
  height: 100%;
  transition: transform var(--transition-normal);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Manrope', sans-serif;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--text-medium);
}

.chart-container {
  margin-top: 3rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chart-container img {
  width: 100%;
  height: auto;
}

/* ======================================
   HISTORY SECTION
====================================== */

.history-section {
  padding: 5rem 1.5rem;
  position: relative;
  background-color: var(--background-light);
}

.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 30px;
}

.timeline-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: 0;
  top: 6px;
}

.timeline-marker:before {
  content: '';
  position: absolute;
  top: 16px;
  left: 7px;
  width: 2px;
  height: calc(100% + 30px);
  background-color: #e0e0e0;
}

.timeline-item:last-child .timeline-marker:before {
  display: none;
}

.timeline-content {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.history-image {
  margin-top: 3rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.history-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.history-image:hover img {
  transform: scale(1.02);
}

/* ======================================
   INSIGHTS SECTION
====================================== */

.insights-section {
  padding: 5rem 1.5rem;
  position: relative;
}

.insight-card {
  height: 100%;
  margin-bottom: 2rem;
}

.insights-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric {
  flex-basis: calc(50% - 0.5rem);
  background-color: rgba(58, 123, 213, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.metric-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-medium);
}

/* ======================================
   RESOURCES SECTION
====================================== */

.resources-section {
  padding: 5rem 1.5rem;
  background-color: var(--background-light);
  position: relative;
}

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
}

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

.resource-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

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

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

.resource-links a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

/* ======================================
   TESTIMONIALS SECTION
====================================== */

.testimonials-section {
  padding: 5rem 1.5rem;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  margin-top: 3rem;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-image {
  border-radius: var(--border-radius-round);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

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

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 4rem;
  color: rgba(58, 123, 213, 0.1);
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: serif;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-button, .next-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-round);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

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

/* ======================================
   WORKSHOPS SECTION
====================================== */

.workshops-section {
  padding: 5rem 1.5rem;
  background-color: var(--background-light);
  position: relative;
}

.workshop-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform var(--transition-normal);
}

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

.workshop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.workshop-content {
  padding: 2rem;
}

.workshop-date {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-round);
  margin-bottom: 1rem;
  font-weight: 500;
}

.workshop-details {
  margin: 1.5rem 0;
}

.workshop-details .detail {
  margin-bottom: 0.5rem;
}

.workshop-details .detail span {
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 0.5rem;
}

/* ======================================
   MEDIA SECTION
====================================== */

.media-section {
  padding: 5rem 1.5rem;
  position: relative;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem;
  color: white;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

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

.gallery-caption h4 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.25rem;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ======================================
   CONTACT SECTION
====================================== */

.contact-section {
  padding: 5rem 1.5rem;
  background-color: var(--background-light);
  position: relative;
}

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

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-item .icon {
  flex: 0 0 50px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-item .text {
  flex: 1;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

.contact-form .input, 
.contact-form .textarea, 
.contact-form .select select {
  border-radius: var(--border-radius-md);
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .input:focus, 
.contact-form .textarea:focus, 
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

.contact-form .button {
  margin-top: 1rem;
}

/* ======================================
   FOOTER SECTION
====================================== */

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

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-right: 1rem;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.newsletter-form .input {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  border-radius: var(--border-radius-round) 0 0 var(--border-radius-round);
}

.newsletter-form .button {
  border-radius: 0 var(--border-radius-round) var(--border-radius-round) 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ======================================
   COOKIE CONSENT
====================================== */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem 2rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0 1rem 0 0;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-round);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* ======================================
   SUCCESS PAGE
====================================== */

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

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

.success-message {
  max-width: 600px;
  margin-bottom: 2rem;
}

.success-message h1 {
  margin-bottom: 1rem;
}

/* ======================================
   PRIVACY & TERMS PAGES
====================================== */

.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.privacy-content, .terms-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.privacy-content h2, .terms-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p, .terms-content p {
  margin-bottom: 1.5rem;
}

/* ======================================
   RESPONSIVE STYLES
====================================== */

@media (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .testimonial-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item .icon {
    margin-bottom: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .biomorphic-divider {
    width: 60px;
  }
  
  .timeline-item {
    padding-left: 20px;
  }
  
  .timeline-marker {
    width: 12px;
    height: 12px;
  }
  
  .metric {
    flex-basis: 100%;
  }
  
  .footer {
    padding: 3rem 1rem 1.5rem;
  }
}

/* ======================================
   ANIMATIONS
====================================== */

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

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

.slide-up {
  animation: slideUp 0.5s ease;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   UTILITIES
====================================== */

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

.has-background-primary {
  background-color: var(--primary-color) !important;
}

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

.has-background-secondary {
  background-color: var(--secondary-color) !important;
}

.has-shadow {
  box-shadow: var(--shadow-md) !important;
}

.has-radius {
  border-radius: var(--border-radius-lg) !important;
}

.is-rounded-full {
  border-radius: var(--border-radius-round) !important;
}

.mt-auto {
  margin-top: auto !important;
}