:root {
  --primary: #FF6B35;
  --secondary: #004E89;
  --accent: #F7B801;
  --dark: #1A1A2E;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --border: #1A1A2E;
  --shadow: rgba(26, 26, 46, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 1rem;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 4px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 8px 0 var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  display: block;
}

.nav-links a:hover {
  background: var(--light);
  border-color: var(--border);
  transform: translateY(-2px);
}

.nav-links a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--border);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--light);
  border: 3px solid var(--border);
  border-radius: 50px;
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--white);
}

.lang-btn.active {
  background: var(--secondary);
  color: var(--white);
}

.lang-divider {
  color: var(--border);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--primary);
  border: 3px solid var(--border);
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--border);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 968px) {
  .header-content {
    padding: 1rem 1.25rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--border);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  nav.active {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #003366 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://picsum.photos/seed/communityfinance/1920/1080');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--primary);
  z-index: -1;
  transform: skewX(-12deg);
}

.hero p {
  color: var(--white);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.125rem 2.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: 4px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--border);
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--border);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
  background: var(--accent);
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.25rem 3rem;
    min-height: 90vh;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

section {
  padding: 6rem 2rem;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
}

.section-header p {
  font-size: 1.25rem;
  color: #555;
  margin-top: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--border);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: 4px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 4px 4px 0 var(--accent);
}

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

.feature-card p {
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hero-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hero-card.large {
  grid-row: span 2;
}

.hero-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--border);
}

.hero-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
}

.hero-card.large .hero-card-image {
  height: 400px;
}

.hero-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-card-content h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.hero-card-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.hero-card-content .btn {
  align-self: flex-start;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-card.large {
    grid-row: span 1;
  }

  .hero-card-image,
  .hero-card.large .hero-card-image {
    height: 250px;
  }
}

.why-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 0 var(--accent);
}

.why-card .feature-icon {
  margin: 0 auto 1.5rem;
}

.why-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.why-card p {
  color: #666;
  line-height: 1.7;
}

.faq-section {
  background: var(--white);
}

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

.faq-item {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 6px 6px 0 var(--accent);
}

.faq-question {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 0px solid var(--border);
}

.faq-item.active .faq-answer {
  border-top-width: 4px;
}

.faq-answer-content {
  padding: 2rem;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 1.5rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #003366 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://picsum.photos/seed/ctafinancial/1600/900');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-content {
  padding: 4rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #ccc;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.contact-info i {
  color: var(--primary);
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
  color: #999;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-page {
  padding-top: 8rem;
  min-height: 100vh;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
}

.contact-info-section h2 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.contact-info-section p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  background: var(--light);
  border: 4px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-details h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.map-container {
  border: 4px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-section {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 8px 8px 0 var(--accent);
}

.contact-form-section h2 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 3px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 var(--accent);
  transform: translate(-2px, -2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.iti {
  width: 100%;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0.125rem;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.form-group .btn {
  width: 100%;
  border: 4px solid var(--border);
  font-size: 1.125rem;
}

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }

  .contact-form-section {
    box-shadow: 4px 4px 0 var(--accent);
  }
}

.inner-page {
  padding-top: 8rem;
  min-height: 100vh;
}

.inner-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #003366 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://picsum.photos/seed/innerhero/1600/900');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.inner-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.inner-hero p {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.7;
}

.inner-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 4px solid var(--accent);
}

.content-section h3 {
  color: var(--secondary);
  margin: 2rem 0 1rem;
}

.content-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-section ul,
.content-section ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.content-section li {
  margin-bottom: 0.75rem;
}

.highlight-box {
  background: var(--light);
  border: 4px solid var(--border);
  border-left: 8px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 3rem 1.25rem;
  }

  .inner-content {
    padding: 3rem 1.25rem;
  }
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.option-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.option-card:hover {
  transform: translate(-6px, -6px);
  box-shadow: 10px 10px 0 var(--border);
}

.option-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
}

.option-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-content h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.option-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.option-features {
  list-style: none;
  margin-bottom: 2rem;
}

.option-features li {
  padding: 0.5rem 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  font-size: 1.25rem;
  width: 24px;
  height: 24px;
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thanks-page {
  padding-top: 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem 2rem;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border: 6px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--white);
  margin: 0 auto 2rem;
  box-shadow: 8px 8px 0 var(--accent);
  animation: thanksPulse 2s ease-in-out infinite;
}

@keyframes thanksPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thanks-content h1 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.thanks-content p {
  color: #666;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 4px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 10000;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  color: #666;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  white-space: nowrap;
}

@media (max-width: 968px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

.workshop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.workshop-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 4px solid var(--border);
  border-radius: 20px;
  box-shadow: 12px 12px 0 var(--accent);
}

.workshop-hero-content h1 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.workshop-hero-content p {
  color: #666;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.workshop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  background: var(--light);
  border: 3px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 500;
}

@media (max-width: 968px) {
  .workshop-hero {
    grid-template-columns: 1fr;
  }

  .workshop-hero-image {
    height: 350px;
  }

  .workshop-stats {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}