:root {
  /* Primary Colors */
  --primary-color: #3273dc;
  --primary-light: #4a89e8;
  --primary-dark: #1c54b2;
  
  /* Secondary Colors */
  --secondary-color: #23d160;
  --secondary-light: #3be778;
  --secondary-dark: #18a248;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-400: #bdbdbd;
  --neutral-500: #9e9e9e;
  --neutral-600: #757575;
  --neutral-700: #616161;
  --neutral-800: #424242;
  --neutral-900: #212121;
  
  /* Accent Colors */
  --accent-color: #ff9f43;
  --accent-light: #ffb66c;
  --accent-dark: #e88c2a;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  
  /* Shadow Colors */
  --shadow-light: rgba(149, 157, 165, 0.1);
  --shadow-medium: rgba(149, 157, 165, 0.2);
  --shadow-dark: rgba(149, 157, 165, 0.3);
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-extra-large: 24px;
  --radius-circle: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
  
  /* Neumorphic Shadows */
  --nm-shadow-small: 5px 5px 10px var(--shadow-medium), -5px -5px 10px var(--shadow-light);
  --nm-shadow-medium: 8px 8px 16px var(--shadow-medium), -8px -8px 16px var(--shadow-light);
  --nm-shadow-large: 15px 15px 30px var(--shadow-medium), -15px -15px 30px var(--shadow-light);
  --nm-shadow-inset: inset 5px 5px 10px var(--shadow-medium), inset -5px -5px 10px var(--shadow-light);
}

/* Base Styles */
html, body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--neutral-200);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Utility Classes */
.has-shadow {
  box-shadow: var(--nm-shadow-medium);
}

.has-shadow-inset {
  box-shadow: var(--nm-shadow-inset);
}

.has-radius {
  border-radius: var(--radius-medium);
}

.has-radius-large {
  border-radius: var(--radius-large);
}

.has-text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.section-title {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  margin-bottom: var(--space-xl);
  color: var(--text-medium);
}

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

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  background-color: transparent;
}

.navbar-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

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

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

.navbar-burger:hover {
  background-color: transparent;
}

/* Hero Section */
.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

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

.hero-body {
  position: relative;
  z-index: 2;
}

.hero-title,
.hero-subtitle,
.hero-description {
  color: var(--text-white) !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  margin-top: var(--space-xl);
}

/* Button Styles */
.button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: var(--radius-medium);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.button.is-light.is-outlined {
  border-color: var(--neutral-100);
  color: var(--neutral-100);
}

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

/* Process Section */
.process-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.process-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.process-card .card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

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

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

.progress-indicator {
  height: 6px;
  background-color: var(--neutral-300);
  border-radius: var(--radius-small);
  margin: var(--space-md) 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: var(--radius-small);
  transition: width var(--transition-slow) ease-in-out;
}

.process-description {
  color: var(--text-medium);
  flex-grow: 1;
}

/* Portfolio Section */
.portfolio-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

.portfolio-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--nm-shadow-large);
}

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

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

.portfolio-description {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.custom-slider {
  margin-top: auto;
}

.slider-track {
  height: 6px;
  background-color: var(--neutral-300);
  border-radius: var(--radius-small);
  position: relative;
  margin-bottom: var(--space-xs);
}

.slider-thumb {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: var(--radius-circle);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(50, 115, 220, 0.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* Team Section */
.team-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.team-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.team-card .card-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.team-card .title {
  margin-bottom: var(--space-xs);
}

.team-card .subtitle {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.team-description {
  color: var(--text-medium);
  flex-grow: 1;
  text-align: left;
}

/* Community Section */
.community-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

.community-content {
  background-color: var(--neutral-100);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  box-shadow: var(--nm-shadow-medium);
}

.community-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.feature-card {
  background-color: var(--neutral-200);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  height: 100%;
  box-shadow: var(--nm-shadow-small);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.feature-card .title {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.join-community {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-300);
}

/* Resources Section */
.resources-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.resource-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card .card-image {
  height: 200px;
  overflow: hidden;
}

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

.resource-description {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.resource-card .button {
  margin-top: auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

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

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

.testimonial-card .card-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
}

.testimonial-card .image-container {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  border: 4px solid var(--neutral-100);
  box-shadow: var(--nm-shadow-small);
}

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

.testimonial-card .title {
  margin-bottom: var(--space-xs);
}

.testimonial-card .subtitle {
  color: var(--text-medium);
  margin-bottom: var(--space-md);
}

.rating {
  margin-bottom: var(--space-md);
}

.star {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin: 0 1px;
}

.testimonial-text {
  color: var(--text-medium);
  font-style: italic;
  position: relative;
  padding: 0 var(--space-md);
  flex-grow: 1;
  text-align: left;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--neutral-400);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: 0;
}

.testimonial-text::after {
  bottom: -30px;
  right: 0;
}

/* Events Section */
.events-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.event-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

.event-date {
  background-color: var(--primary-color);
  color: var(--text-white);
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-medium);
  position: absolute;
  top: -35px;
  left: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.month {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-card .title {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.event-description {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.event-details {
  margin-top: auto;
}

.event-details p {
  margin-bottom: var(--space-sm);
}

.event-details .button {
  margin-top: var(--space-md);
}

/* Press Section */
.press-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-200);
}

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

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

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

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

.press-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.press-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.press-excerpt {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.press-card .button {
  margin-top: auto;
}

/* Contact Section */
.contact-section {
  padding: var(--space-xxl) 0;
  background-color: var(--neutral-100);
}

.contact-card {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
}

.contact-info {
  padding: var(--space-md) 0;
}

.contact-info p {
  margin-bottom: var(--space-lg);
}

.social-links .title {
  margin-bottom: var(--space-md);
}

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

.contact-form .field {
  margin-bottom: var(--space-md);
}

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: var(--neutral-200);
  border: none;
  box-shadow: var(--nm-shadow-inset);
  border-radius: var(--radius-medium);
  transition: box-shadow var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  box-shadow: var(--nm-shadow-inset), 0 0 0 2px var(--primary-light);
}

.contact-form .checkbox input {
  margin-right: var(--space-xs);
}

/* Footer Section */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer .title {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.footer-description {
  color: var(--neutral-400);
  margin-bottom: var(--space-lg);
}

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

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

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neutral-100);
}

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

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

.footer-social a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--neutral-100);
}

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

.newsletter .input {
  background-color: var(--neutral-700);
  border: none;
  color: var(--neutral-100);
}

.footer-bottom {
  margin-top: var(--space-xxl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-700);
  text-align: center;
  color: var(--neutral-500);
  font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.95);
  color: var(--text-white);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  margin: 0 var(--space-lg) 0 0;
  flex-grow: 1;
}

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

.success-container {
  max-width: 600px;
  background-color: var(--neutral-100);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  box-shadow: var(--nm-shadow-medium);
}

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

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

.success-message {
  margin-bottom: var(--space-xl);
}

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

.content-container {
  background-color: var(--neutral-100);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  box-shadow: var(--nm-shadow-medium);
}

.content-title {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-section {
  margin-bottom: var(--space-xl);
}

.content-section h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 115, 220, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(50, 115, 220, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 115, 220, 0);
  }
}

@keyframes morphing {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: var(--space-md);
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .event-date {
    width: 60px;
    height: 60px;
    top: -30px;
  }
  
  .month {
    font-size: 0.7rem;
  }
  
  .day {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .buttons .button {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .buttons .button:not(:last-child) {
    margin-right: 0;
  }
  
  .card-image {
    height: 200px !important;
  }
}