:root {
  --gold: #d4a855;
  --gold-dark: #b08d45;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #666;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Transparent over Hero */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}

.site-header.fixed {
  position: fixed;
  background: rgba(10, 10, 10, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.site-header.fixed .nav-menu a {
  color: var(--white);
}

.site-header.fixed .btn {
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.site-header.fixed .btn:hover {
  background-color: transparent;
  color: var(--white);
}

/* Header for Inner Pages (no hero) */
.site-header.inner-page {
  position: fixed;
  background: rgba(10, 10, 10, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.site-header.inner-page .nav-menu a {
  color: var(--white);
}

.site-header.inner-page .btn {
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.site-header.inner-page .btn:hover {
  background-color: transparent;
  color: var(--white);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  width: 160px;
  height: auto;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.7;
}

/* Desktop Dropdown */
.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2a2a2a;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border-radius: 4px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item-has-children .sub-menu li {
  border-bottom: 1px solid #3a3a3a;
  width: 100%;
}

.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}

.menu-item-has-children .sub-menu a {
  color: #ffffff !important;
  padding: 12px 20px;
  display: block;
  text-transform: none;
  font-size: 14px;
}

.menu-item-has-children .sub-menu a:hover {
  background-color: rgba(255,255,255,0.1);
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Menu Toggle (Mobile) - hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: var(--white);
}

/* MOBILE MENU - Only applies under 992px */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    gap: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid #eee;
    position: static;
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #333 !important;
    font-weight: 500;
    text-transform: none;
    font-size: 16px;
    width: 100%;
    height: 56px;
    box-sizing: border-box;
    line-height: 1;
  }

  /* Dropdown toggle indicator - fixed size */
  .menu-item-has-children > a {
    justify-content: space-between;
    padding-right: 50px;
    position: relative;
  }

  .menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    width: 22px;
    text-align: center;
  }

  .menu-item-has-children.open > a::after {
    content: '−';
  }

  .menu-item-has-children.open > a {
    background: #fafafa;
    color: var(--gold) !important;
  }

  /* Mobile submenu */
  .menu-item-has-children .sub-menu {
    display: block;
    position: static;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: max-height 0.3s ease-out;
  }

  .menu-item-has-children.open .sub-menu {
    max-height: 300px;
  }

  .menu-item-has-children .sub-menu li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .menu-item-has-children .sub-menu li:last-child {
    border-bottom: none;
  }

  .menu-item-has-children .sub-menu a {
    padding: 18px 20px 18px 35px;
    color: #333 !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
    box-sizing: border-box;
    line-height: 1;
  }

  .menu-item-has-children .sub-menu a:hover,
  .menu-item-has-children .sub-menu a.active {
    background: #f0f0f0;
    color: var(--gold) !important;
  }

  /* Inner pages - ensure text is dark on white background */
  .site-header.inner-page .nav-menu {
    background: #fff;
  }

  .site-header.inner-page .nav-menu > li > a {
    color: #333 !important;
  }

  .site-header.inner-page .menu-item-has-children .sub-menu a {
    color: #333 !important;
  }

  /* Hide inscription button in mobile */
  .main-nav > .btn {
    display: none;
  }
}

/* Button - Rounded Gold */
.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  border: 2px solid var(--gold);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: transparent;
  color: var(--gold);
}

.btn-sm {
  padding: 12px 28px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  background: #0a0a0a url('../images/overlay-hero.jpg') center/cover no-repeat;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  padding-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.hero-teachers-container {
  flex: 0 0 70%;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

/* Hero Typography */
.hero-title {
  color: var(--white);
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.5vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Teachers Image - Animated */
.hero-teachers {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateX(100vw);
  width: 100%;
  max-width: 1000px;
  z-index: 1;
  animation: slideIn 1.5s ease-out 0.5s forwards;
}

.hero-teachers img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.8;
}

@keyframes slideIn {
  to {
    transform: translateX(-50%) translateX(0);
  }
}

/* Social Icons - Vertical Left */
.hero-social {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-social::before,
.hero-social::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: transform 0.2s, background 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.2);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Services Grid */
.services {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.service-card {
  padding: 40px 20px;
}

.service-icon {
  font-size: 48px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 20px;
  display: block;
}

.service-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-title a {
  color: inherit;
  position: relative;
}

.service-title a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.service-description {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Page Header */
.page-header {
  background: #0a0a0a url('../images/overlay-hero.jpg') center/cover no-repeat;
  padding: 110px 0 60px;
  text-align: center;
  position: relative;
  margin-top: 60px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  color: var(--gold);
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.page-description {
  color: var(--white);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page Content */
.page-content {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-content h2 {
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.page-content h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
  text-transform: uppercase;
}

.page-content h4 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  text-transform: uppercase;
}

.page-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.page-content ul,
.page-content ol {
  margin: 15px 0 15px 30px;
}

.page-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-header {
  background: rgba(212, 168, 85, 0.1);
  border-bottom: 2px solid var(--gold);
}

.pricing-header .pricing-cell {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-header .price-icon {
  font-size: 32px;
  color: var(--gold);
}

.pricing-header span {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.pricing-cell {
  padding: 25px 15px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.pricing-cell:last-child {
  border-right: none;
}

.pricing-category-cell {
  text-align: left;
  padding-left: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.pricing-category-cell h3 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-category-cell p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
}

.pricing-cell .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.pricing-cell .price-ars {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* Pricing Table with 2 columns (for workshops) */
.pricing-table-2cols .pricing-row {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 768px) {
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .pricing-row:last-child {
    margin-bottom: 0;
  }
  
  .pricing-header {
    display: none;
  }
  
  .pricing-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
  }
  
  .pricing-cell:last-child {
    border-bottom: none;
  }
  
  .pricing-category-cell {
    background: rgba(212, 168, 85, 0.1);
    text-align: center;
    padding: 20px 15px;
  }
}

/* Offer Cards */
.offer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-card h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-card p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.offer-card p:last-child {
  margin-bottom: 0;
}

/* Payment Info */
.payment-info {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.payment-info h3 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.payment-info p {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

/* Jury Grid */
.jury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.jury-member {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

/* Testimonials */
.testimonial {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--gold);
}

.testimonial p {
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.testimonial cite {
  color: var(--gold-dark);
  font-weight: 600;
  font-style: normal;
}

/* Testimonial Blocks - Horizontal Layout */
.testimonials-page {
  padding: 0;
}

.testimonial-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  margin: 0;
  border-radius: 0;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.testimonial-block:nth-child(1) {
  animation-delay: 0.2s;
}

.testimonial-block:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial-block:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-block:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.testimonial-block.testimonial-reverse {
  flex-direction: row-reverse;
}

.testimonial-image {
  flex: 0 0 250px;
}

.testimonial-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-text cite {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
}

@media (max-width: 768px) {
  .testimonial-block,
  .testimonial-block.testimonial-reverse {
    flex-direction: column;
  }

  .testimonial-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .testimonial-text {
    text-align: center;
  }
}

/* Workshop Cards Grid - Similar to Original Site */
.workshop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
  justify-items: center;
}

.workshop-cards .workshop-card:nth-child(4),
.workshop-cards .workshop-card:nth-child(5) {
  justify-self: center;
}

.workshop-cards-second-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px;
}

.workshop-cards-second-row .workshop-card {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

.workshop-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.workshop-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.workshop-card-image {
  width: 130px;
  height: 130px;
  margin: 0 auto 5px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4a855;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

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

.workshop-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.workshop-card h2 {
  color: var(--white);
  font-size: 46px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1;
}

.workshop-card h3 {
  color: #d4a855;
  font-size: 28px;
  font-weight: 700;
  margin: 4px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.workshop-subtitle {
  color: #d4a855 !important;
  line-height: 1.1;
}

.workshop-card h4 {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.workshop-card .toggle {
  border: none;
  margin-top: 15px;
  text-align: left;
}

.workshop-card .toggle-title {
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  justify-content: center;
  gap: 10px;
}

.workshop-card .toggle-icon {
  color: #d4a855;
  font-size: 18px;
}

.workshop-card .toggle-title:hover {
  background: rgba(255,255,255,0.1);
}

.workshop-card .toggle-title a {
  color: #d4a855;
  font-size: 24px;
}

.workshop-card .toggle-title a:hover {
  color: #e5b966;
}

.workshop-card .toggle-icon {
  color: var(--gold);
}

.workshop-card .toggle-content {
  padding: 15px 0;
  background: transparent;
}

.workshop-card .toggle-content p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .workshop-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workshop-cards-second-row {
    flex-wrap: wrap;
  }
  
  .workshop-cards-second-row .workshop-card {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 576px) {
  .workshop-cards {
    grid-template-columns: 1fr;
  }
  
  .workshop-cards-second-row {
    flex-direction: column;
    align-items: center;
  }
  
  .workshop-cards-second-row .workshop-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .workshop-card-image {
    width: 110px;
    height: 110px;
  }
  
  .workshop-card h2 {
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1;
  }
  
  .workshop-card h3 {
    font-size: 20px;
    line-height: 1.1;
  }
  
  .workshop-card h4 {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .workshop-card .toggle-content p {
    font-size: 15px;
  }
  
  .workshop-card .toggle-title a {
    font-size: 16px;
  }
}

/* Workshop Cards (Legacy) */
.workshop-card-legacy {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
}

.workshop-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.workshop-header h2 {
  margin: 0;
  color: var(--gold-dark);
  text-transform: lowercase;
}

.workshop-badge {
  background: var(--gold);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.workshop-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Toggle/Accordion */
.toggle {
  border: 1px solid #eee;
  border-radius: 4px;
  margin-top: 20px;
}

.toggle-item {
  border-bottom: 1px solid #eee;
}

.toggle-item:last-child {
  border-bottom: none;
}

.toggle-title {
  padding: 15px 20px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.toggle-title:hover {
  background: #f0f0f0;
}

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

.toggle-icon {
  color: var(--gold-dark);
}

.toggle-content {
  padding: 20px;
  background: var(--white);
  display: none;
}

.toggle-content.active {
  display: block;
}

.toggle-content p {
  margin-bottom: 15px;
}

/* Payment Info */
.payment-info {
  background: #2a2a2a;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.payment-info h3 {
  color: var(--gold-dark);
  margin-top: 0;
  margin-bottom: 15px;
}

.payment-info p {
  margin-bottom: 10px;
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li,
.step-item {
  position: relative;
  padding-left: 0;
  margin-bottom: 50px;
}

.steps li::before,
.step-item::before {
  display: none;
}

.steps li strong,
.step-item strong {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.steps-content {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
}

.form-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.form-buttons .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
  text-align: center;
  text-decoration: underline;
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.form-buttons .btn:hover {
  background-color: transparent;
  color: var(--gold-dark);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-heading {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--white);
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-links a i {
  width: 20px;
  margin-right: 8px;
  text-align: center;
}

.country-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-left: 6px;
  border-radius: 2px;
  vertical-align: middle;
  border: 1px solid rgba(255,255,255,0.3);
}

.country-flag-ar {
  background: linear-gradient(to bottom, 
    #74acdf 0%, 
    #74acdf 33%, 
    #fff 33%, 
    #fff 66%, 
    #74acdf 66%
  );
}

.country-flag-es {
  background: linear-gradient(to bottom, 
    #c60b1e 0%, 
    #c60b1e 25%, 
    #ffc400 25%, 
    #ffc400 75%, 
    #c60b1e 75%
  );
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero {
    height: auto;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }
  
  .hero-inner {
    height: auto;
    flex-direction: column;
    display: flex;
    flex: 1;
  }
  
  .hero-content {
    display: block;
    padding: 20px 0;
    text-align: center;
  }
  
  .hero-teachers-container {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: auto;
  }
  
  .hero-teachers {
    position: relative;
    left: auto;
    transform: none;
    animation: none;
    max-width: 100%;
    width: 100%;
    display: block;
  }
  
  .hero-teachers img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
  }
  
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-social {
    left: 20px;
  }

  .page-title {
    font-size: 42px;
  }

  .page-description {
    font-size: 14px;
  }

  .jury-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .jury-grid {
    grid-template-columns: 1fr;
  }

  .hero-social {
    display: none;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}
