:root {
  /* Primary colors */
  --primary-color: #0a6e78;
  --primary-light: #1a8e9c;
  --primary-dark: #064e56;
  
  /* Secondary colors */
  --secondary-color: #84b942;
  --secondary-light: #9cce5b;
  --secondary-dark: #6a9836;
  
  /* Neutral colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  /* Background colors */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #212529;
  
  /* Gradient backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, rgba(10, 110, 120, 0.9), rgba(33, 37, 41, 0.9));
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  
  /* Border colors */
  --border-light: #dee2e6;
  --border-dark: #495057;
  
  /* Shadow effects */
  --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);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  /* Typography */
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

p {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

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

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

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

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

/* Buttons */
.button {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.button.is-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.button.is-secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* Forms */
.input, .textarea, .select select {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(10, 110, 120, 0.25);
}

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

.label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--text-dark);
}

/* Header/Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
  margin-left: auto;
}

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

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

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

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

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

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

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

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero.is-fullheight {
  min-height: 100vh;
}

.hero-body {
  flex-grow: 1;
  flex-shrink: 0;
  padding: var(--spacing-xl) 0;
  z-index: 2;
}

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

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

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}

.hero-foot {
  padding-bottom: var(--spacing-lg);
  z-index: 2;
}

.scroll-down {
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--text-light);
  border-bottom: 3px solid var(--text-light);
  transform: rotate(45deg);
  margin-top: 10px;
}

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

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
}

.section:nth-child(even) {
  background-color: var(--bg-light);
}

.section:nth-child(odd) {
  background-color: var(--bg-white);
}

.section .title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section .subtitle {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--text-muted);
}

/* Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.column {
  flex: 1;
  padding: 15px;
  min-width: 0;
}

.column.is-one-quarter {
  flex: 0 0 25%;
  max-width: 25%;
}

.column.is-one-third {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.column.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.column.is-two-thirds {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.column.is-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.column.is-one-fifth {
  flex: 0 0 20%;
  max-width: 20%;
}

/* Cards */
.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

.card .title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.card .content {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

/* Service Cards */
.service-card {
  text-align: center;
}

.service-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Statistics Section */
.statistics-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-normal);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  font-family: var(--font-heading);
}

.stat-plus, .stat-percent {
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  font-family: var(--font-heading);
}

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

.stat-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Resource Cards */
.resource-card .card-content {
  text-align: center;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: transform var(--transition-normal);
}

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

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

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--spacing-md);
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.author-position {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Research Cards */
.research-card .card-content {
  text-align: center;
}

/* Events Section */
.events-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.event-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  display: flex;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal);
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  min-width: 80px;
  margin-right: var(--spacing-lg);
  text-align: center;
}

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

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

.event-content {
  flex-grow: 1;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.event-description {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
}

.event-meta {
  display: flex;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.event-location, .event-time {
  display: flex;
  align-items: center;
  margin-right: var(--spacing-lg);
}

.icon-location, .icon-time {
  margin-right: var(--spacing-xs);
}

/* Partners Section */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-height: 80%;
  max-width: 80%;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* Team Section */
.team-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.team-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.team-image {
  width: 100%;
  text-align: center;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: var(--spacing-lg);
  text-align: center;
  flex-grow: 1;
  width: 100%;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.team-position {
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

.team-bio {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  color: var(--text-light);
  transition: all var(--transition-normal);
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.gallery-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Section */
.faq-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.is-active .faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 500px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Contact Section */
.contact-form {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  height: 100%;
}

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

.contact-item h3 {
  color: var(--text-light);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--spacing-sm);
}

.contact-item p {
  margin-bottom: var(--spacing-sm);
}

.social-links h3 {
  color: var(--text-light);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--spacing-sm);
}

.social-links .button {
  margin-right: var(--spacing-sm);
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.social-links .button:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* Careers Section */
.careers-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.career-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.career-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.career-location {
  color: var(--primary-light);
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

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

.career-requirements {
  margin-top: var(--spacing-md);
  padding-left: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.8);
}

.career-requirements li {
  margin-bottom: var(--spacing-xs);
}

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

.footer-description {
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.7);
}

.social-links a {
  color: var(--text-light);
  margin-right: var(--spacing-md);
  font-weight: 500;
  transition: color var(--transition-fast);
  display: inline-block;
}

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

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

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

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

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

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: var(--spacing-lg);
  transition: color var(--transition-fast);
}

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  /*opacity: 0;*/
  transition: opacity var(--transition-normal);
}

.modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    /*opacity: 0;*/
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-card-head {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-light);
}

.delete {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
}

.delete::before, .delete::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: var(--text-light);
  top: 50%;
  left: 50%;
}

.delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-card-body {
  padding: var(--spacing-lg);
}

/* Cookie Consent */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: var(--spacing-lg);
  text-align: center;
  z-index: 9999;
}

#cookie-consent p {
  margin-bottom: var(--spacing-md);
}

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

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.success-message {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.page-content .container {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.page-content p {
  margin-bottom: var(--spacing-md);
}

.page-content ul, .page-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.page-content li {
  margin-bottom: var(--spacing-sm);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md) 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .navbar-burger {
    display: block;
  }
  
  .column.is-one-quarter, 
  .column.is-one-third, 
  .column.is-half, 
  .column.is-two-thirds, 
  .column.is-one-fifth {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .event-day {
    margin-right: var(--spacing-sm);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: var(--spacing-md);
    justify-content: center;
  }
  
  .footer-legal a {
    margin: 0 var(--spacing-md);
  }
}

@media screen and (max-width: 767px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .column.is-one-quarter, 
  .column.is-one-third, 
  .column.is-half, 
  .column.is-two-thirds, 
  .column.is-one-fifth {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .event-meta {
    flex-direction: column;
  }
  
  .event-location, .event-time {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }
  
  .contact-info {
    margin-top: var(--spacing-lg);
  }
  
  .modal-card {
    width: 90%;
  }
}

/* Utility Classes */
.has-text-centered {
  text-align: center;
}

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

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: calc(var(--spacing-sm) * 1.5);
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.mt-5 {
  margin-top: calc(var(--spacing-md) * 1.5);
}

.mt-6 {
  margin-top: var(--spacing-lg);
}

.mb-3 {
  margin-bottom: calc(var(--spacing-sm) * 1.5);
}

.mb-6 {
  margin-bottom: var(--spacing-lg);
}

.is-size-4 {
  font-size: 1.5rem;
}

.is-size-5 {
  font-size: 1.25rem;
}
.footer {
    background-color: #1d1b1b!important;
    padding: 3rem 1.5rem 6rem;
}
.navbar-burger{
  display: none!important;
}