:root {
  /* Primary Colors */
  --primary-color: #5e35b1;
  --primary-light: #9162e4;
  --primary-dark: #3c1f8a;
  
  /* Secondary Colors */
  --secondary-color: #ff6b6b;
  --secondary-light: #ff9a9a;
  --secondary-dark: #d64545;
  
  /* Gradient Colors */
  --gradient-start: #7e57c2;
  --gradient-end: #5e35b1;
  --gradient-accent: #9575cd;
  
  /* Neutral Colors */
  --dark: #333333;
  --dark-medium: #555555;
  --medium: #777777;
  --light-medium: #999999;
  --light: #f5f5f5;
  
  /* Text Colors */
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #ffffff;
  
  /* Neumorphism Shadows */
  --nm-shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.4);
  --nm-shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.6);
  --nm-shadow-inset-light: inset 8px 8px 16px rgba(174, 174, 192, 0.25);
  --nm-shadow-inset-dark: inset -8px -8px 16px rgba(255, 255, 255, 0.25);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-circle: 50%;
}

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-medium);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--primary-light);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn, button, input[type="submit"] {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--nm-shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before, button:before, input[type="submit"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  color: var(--text-light);
}

.btn:hover:before, button:hover:before, input[type="submit"]:hover:before {
  left: 100%;
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
  text-align: center;
  font-size: 2.5rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-sm);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  color: var(--text-medium);
  font-size: 1.2rem;
}

/* ===== Header Styles ===== */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-section.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  transform: scaleX(1);
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding: var(--spacing-xl) 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-light);
  animation: fadeIn 1s ease-out;
}

.hero-title {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ===== About Section ===== */
.about-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content {
  padding: var(--spacing-md);
}

.about-content h3 {
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.about-content h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  border-radius: var(--radius-sm);
}

.about-stats {
  margin-top: var(--spacing-lg);
}

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

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

/* ===== Workshops Section ===== */
.workshops-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f5f7fa, #e4e9f2);
}

.workshop-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.card-content {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.workshop-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: var(--spacing-sm) 0;
}

.card-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: 1.5rem;
}

.card-content ul li {
  margin-bottom: 0.5rem;
}

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

/* ===== Pricing Section ===== */
.pricing-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light);
}

.pricing-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  text-align: center;
  position: relative;
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.8rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-body {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-body ul {
  margin-bottom: var(--spacing-md);
  padding-left: 0;
  list-style: none;
}

.pricing-body ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-body ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-body .btn {
  margin-top: auto;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom-left-radius: var(--radius-sm);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* ===== Instructors Section ===== */
.instructors-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #e6e9f0, #eef1f5);
}

.instructor-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.instructor-position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-links a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

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

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light);
}

.testimonial-card {
  display: flex;
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  padding: var(--spacing-md);
  margin: 0 auto;
  max-width: 900px;
}

.testimonial-image {
  flex: 0 0 100px;
  margin-right: var(--spacing-md);
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 4px solid var(--primary-light);
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
  position: relative;
  padding-left: var(--spacing-md);
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
}

.testimonial-author h4 {
  margin-bottom: 0;
  color: var(--primary-dark);
}

.testimonial-author p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: var(--radius-circle);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* ===== History Section ===== */
.history-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #f5f7fa, #e4e9f2);
}

.history-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.history-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.history-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.history-content {
  padding: var(--spacing-md);
}

.history-content h3 {
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.history-content h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  border-radius: var(--radius-sm);
}

.history-timeline {
  position: relative;
  padding-left: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.history-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--secondary-color));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--spacing-md);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: -21px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  border: 3px solid var(--text-light);
  z-index: 1;
}

.year {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.description h4 {
  margin-bottom: 0.5rem;
}

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

/* ===== Behind the Scenes Section ===== */
.behind-scenes-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light);
}

.behind-scenes-content {
  padding: var(--spacing-md);
}

.behind-scenes-content h3 {
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.behind-scenes-content h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  border-radius: var(--radius-sm);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Resources Section ===== */
.resources-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, #e6e9f0, #eef1f5);
}

.resource-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  padding: var(--spacing-md);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.resource-card h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  border-radius: var(--radius-sm);
}

.resource-card ul {
  padding-left: var(--spacing-md);
  margin-bottom: 0;
}

.resource-card ul li {
  margin-bottom: var(--spacing-sm);
}

.resource-card ul li a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* ===== Contact Section ===== */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--light);
}

.contact-info {
  padding: var(--spacing-md);
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-light);
  margin-bottom: var(--spacing-md);
}

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

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

.info-item h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-map {
  margin-top: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.contact-form-container {
  background-color: var(--text-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-light);
}

.contact-form-container h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
  text-align: center;
}

.form-control {
  background-color: var(--light);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
  border: none;
  outline: none;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  background-color: var(--light);
  border: none;
  box-shadow: var(--nm-shadow-inset-light), var(--nm-shadow-inset-dark);
}

.form-check-input:checked {
  background-color: var(--primary-color);
}

/* ===== Footer Section ===== */
.footer-section {
  padding: var(--spacing-lg) 0 var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-light);
}

.footer-section h3 {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: var(--radius-sm);
}

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

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

.footer-links a, 
.footer-contact a, 
.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

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

.footer-contact li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact li i {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  color: var(--text-light);
  font-weight: 600;
  margin-right: var(--spacing-sm);
  transition: color 0.3s ease;
}

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

.copyright {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== Cookie Consent ===== */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  margin: 0 var(--spacing-md);
  animation: slideUp 0.5s ease forwards;
}

#accept-cookies {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--text-light);
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ===== Success Page ===== */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f5f7fa, #e4e9f2);
}

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

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-light);
}

.success-content h1 {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

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

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

.privacy-content, .terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-light);
}

.privacy-content h1, .terms-content h1 {
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.privacy-content h2, .terms-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

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

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

.privacy-content ul li, .terms-content ul li {
  margin-bottom: 0.5rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* ===== Media Queries ===== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }
  
  .testimonial-text {
    padding-left: 0;
  }
  
  .testimonial-text:before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .history-image, .about-image {
    margin-bottom: var(--spacing-md);
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .navbar-collapse {
    background-color: var(--text-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--nm-shadow-light);
    margin-top: var(--spacing-sm);
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info, .contact-form-container {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-stats .col-4 {
    width: 100%;
    margin-bottom: var(--spacing-sm);
  }
  
  .workshop-price, .price {
    font-size: 1.8rem;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
}