:root {
  --primary: #0A1828;
  --secondary: #D4AF37;
  --accent: #FF6B6B;
  --background: #FAFAF8;
  --surface: #F5F5F3;
  --text: #2D3436;
  --text-light: #636E72;
  --border: #E0E0DD;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #D4AF37 0%, #FF6B6B 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

h4 {
  font-size: 1.35rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

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

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

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

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

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

header.scrolled {
  box-shadow: 0 2px 20px rgba(10, 24, 40, 0.06), 0 1px 4px rgba(10, 24, 40, 0.04);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

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

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

.lang-btn {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s ease;
  font-weight: 400;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  color: var(--primary);
  font-weight: 500;
}

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

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2), 0 2px 4px rgba(212, 175, 55, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25), 0 4px 8px rgba(212, 175, 55, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 0.875rem 2rem;
  border: 1px solid var(--primary);
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 24, 40, 0.15), 0 2px 4px rgba(10, 24, 40, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hero-section {
  margin-top: 80px;
  padding: 5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  border-color: var(--secondary);
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  margin: 0;
}

.hero-form-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(10, 24, 40, 0.08), 0 2px 8px rgba(10, 24, 40, 0.04);
  transition: all 0.3s ease;
}

.hero-form-card:hover {
  box-shadow: 0 12px 32px rgba(10, 24, 40, 0.12), 0 4px 12px rgba(10, 24, 40, 0.06);
}

.hero-form-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border);
  background: var(--background);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
}

.section {
  padding: 6rem 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gradient);
  margin: 0 auto 1.5rem;
}

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

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-left: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-left-color: var(--secondary);
  transform: translateX(8px);
  background: var(--surface);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.feature-content h3 {
  margin-bottom: 0.75rem;
}

.feature-content p {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(10, 24, 40, 0.08);
  transform: translateY(-4px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-question h4 {
  flex: 1;
  font-size: 1.1rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0;
  border-top: 1px solid transparent;
  margin-top: 0;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top-color: var(--border);
}

.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--surface);
}

.image-section {
  padding: 0;
  position: relative;
}

.image-section img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 24, 40, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.image-overlay-content h2,
.image-overlay-content p {
  color: var(--white);
}

.image-overlay-content h2 {
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--secondary);
  background: var(--surface);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(10, 24, 40, 0.06);
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

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

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

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.content-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(10, 24, 40, 0.1);
  transform: translateY(-8px);
}

.content-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}

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

.content-card-body {
  padding: 2rem;
}

.content-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.content-card-body p {
  margin-bottom: 1.25rem;
}

.card-link {
  color: var(--secondary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--secondary);
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-content {
  background: var(--surface);
  padding: 2rem;
  border-left: 1px solid var(--border);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-left-color: var(--secondary);
  background: var(--white);
  transform: translateX(8px);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-content .timeline-year {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}

footer {
  background: var(--primary);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.footer-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
}

.footer-form input {
  flex: 1;
  padding: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.footer-form button {
  padding: 0.875rem 2rem;
  background: var(--gradient);
  border: none;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-left-color: var(--secondary);
  background: var(--surface);
  transform: translateX(8px);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 1.25rem;
}

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(10, 24, 40, 0.08);
}

.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  margin-top: 4rem;
}

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

.thanks-section {
  padding: 8rem 0;
  text-align: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 3rem;
}

.thanks-section h1 {
  margin-bottom: 1rem;
}

.thanks-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.legal-section {
  padding: 4rem 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: block;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-buttons button.accept {
  background: var(--gradient);
  color: var(--white);
  border: none;
}

.cookie-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 24, 40, 0.1);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(10, 24, 40, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .lang-switcher {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 1rem;
    margin: 0;
    justify-content: center;
  }

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

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .hero-section {
    padding: 3rem 0;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

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

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

  .footer-form {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .image-section img {
    height: 400px;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: -2rem;
  }
}