:root {
  /* Primary Colors */
  --primary-color: #ff6b6b;
  --primary-light: #ff9a9a;
  --primary-dark: #e53e3e;
  
  /* Secondary Colors */
  --secondary-color: #4ecdc4;
  --secondary-light: #7ededb;
  --secondary-dark: #36a39e;
  
  /* Accent Colors */
  --accent-color: #ffe66d;
  --accent-light: #fff3a0;
  --accent-dark: #d6b400;
  
  /* Neutral Colors */
  --dark-text: #333333;
  --light-text: #ffffff;
  --gray-text: #666666;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Animation Timing */
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 0.8s;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
header .title{
  color: #fff!important;
}
p {
  margin-bottom: 1rem;
}

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

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

.section {
  padding: 5rem 2rem;
  position: relative;
}

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

/* Glassmorphism Styles */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: 2rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 var(--glass-shadow);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-fast);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
}

.navbar-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--light-text);
  transition: color var(--transition-fast);
}

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

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

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

.is-transparent {
  background-color: rgba(0, 0, 0, 0.7);
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero .title,
.hero .subtitle,
.hero-description {
  color: var(--light-text);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.animated-title {
  animation: fadeInUp 1.2s ease-out;
}

.hero .button {
  margin: 0 0.5rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.hero .button.is-outlined.is-white {
  border-color: var(--light-text);
  color: var(--light-text);
}

.hero .button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.scroll-down {
  position: relative;
  margin-top: 2rem;
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--light-text);
  font-size: 1.5rem;
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.about-content {
  text-align: center;
  margin-top: 2rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Process Section */
.process-section {
  background-color: var(--light-gray);
  position: relative;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  height: 100%;
}

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

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

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

/* Services Section */
.services-section {
  background-color: #fff;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

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

.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;
}

/* Team Section */
.team-section {
  background-color: var(--light-gray);
}

.team-section .card-image {
  height: 300px;
}

.team-section .subtitle {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Workshops Section */
.workshops-section {
  background-color: #fff;
}

.workshop-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  height: 100%;
}

.workshop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

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

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

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

.workshop-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

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

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

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

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

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

.resource-links a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-info {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-card {
  text-align: center;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid var(--accent-color);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background-color: var(--accent-color);
  color: var(--dark-text);
  padding: 5px 40px;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.pricing-notes {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-gray);
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  position: relative;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-text:before {
  content: "";
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--primary-light);
  opacity: 0.3;
}

.testimonial-author {
  text-align: right;
  margin-top: auto;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--medium-gray);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  flex-grow: 1;
}

.faq-question .icon {
  color: var(--primary-color);
  margin-left: 1rem;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* Careers Section */
.careers-section {
  background-color: var(--light-gray);
}

.careers-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.career-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.career-details {
  margin-bottom: 1.5rem;
}

.career-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

/* Press Section */
.press-section {
  background-color: #fff;
}

.press-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.press-logo {
  margin-bottom: 1.5rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-quote {
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.press-source {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-top: auto;
}

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

.contact-info {
  height: 100%;
}

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

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

.contact-item h3 {
  margin-bottom: 0.5rem;
}

.contact-form {
  height: 100%;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.input, .textarea, .select select {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: var(--medium-gray);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.125em rgba(255, 107, 107, 0.25);
}

.button {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

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

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

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

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}

.map-container iframe {
  display: block;
}

/* Footer */
.footer {
  background-color: #222;
  color: var(--light-text);
  padding: 4rem 2rem 2rem;
}

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

.footer p {
  color: #bbb;
}

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

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

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

.footer-social a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.success-container {
  max-width: 600px;
  padding: 3rem;
}

.success-container h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

/* Privacy and Terms Pages */
.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.content-container h1 {
  margin-bottom: 2rem;
}

.content-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.success-popup.show {
  opacity: 1;
}

.success-content {
  max-width: 400px;
  padding: 2rem;
  text-align: center;
}

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

/* Cookie Consent */
#cookieConsent {
  animation: slideUp var(--transition-medium) forwards;
}

#acceptCookies:hover {
  background-color: #2980b9;
}

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

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .navbar-item {
    color: var(--light-text);
  }
  
  .navbar-burger {
    margin-right: 1rem;
  }
  
  .column.is-one-third,
  .column.is-half {
    padding: 1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .card-image,
  .workshop-image {
    height: 200px;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item .icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}