@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f8f9fa;
  --color-primary: #0a192f;
  --color-accent: #d4af37;
  --color-text: #333333;
  --color-text-light: #666666;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --spacing-section: 64px;
  --spacing-inner: 48px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: clip;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 32px;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--color-primary);
}

.desktop-nav a:hover {
  color: var(--color-accent);
}

.mandatory-notice {
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.hero {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  padding: var(--spacing-section) 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-inner > *,
.story-inner > *,
.kontakt-grid > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
  max-width: 100%;
}

.hero-content h1 {
  color: #ffffff;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: #b5952f;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
}

.btn-secondary-dark {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary-dark:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features-marquee {
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 50px;
}

.separator {
    margin: 0 30px;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.story {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.story-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.routen-preview, .routen-full {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.center-btn {
  text-align: center;
  margin-top: 48px;
}

.card, .highlight-card, .addon-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover, .highlight-card:hover, .addon-card:hover {
  transform: translateY(-8px);
}

.card img, .highlight-card img, .addon-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  position: relative;
}

.badge {
  position: absolute;
  top: -200px;
  right: 5px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-new {
  background: #10b981;
  color: #ffffff;
}

.card .location, .highlight-card .location {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.card .details {
  font-weight: 500;
  margin-bottom: 8px;
}

.card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.includes {
  list-style: none;
  margin-bottom: 16px;
}

.includes li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.highlights {
  font-size: 0.9rem;
  color: var(--color-primary);
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.highlight-card, .addon-card {
  padding: 24px;
  text-align: center;
}

.highlight-card h3, .addon-card h3 {
  margin-top: 16px;
}

.highlight-card p, .addon-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.seasonal-highlights {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.custom-routes {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.custom-routes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.custom-content p {
  margin-bottom: 24px;
  color: var(--color-text-light);
}

.custom-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.leistungen-preview {
  padding: var(--spacing-section) 0;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.leistungen-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.leistungen-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.leistungen-content p {
  margin-bottom: 32px;
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.gallery-container {
  margin-top: 32px;
}

.gallery-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.gallery-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-thumb:hover {
  opacity: 1;
}

.ablauf-section {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.step-card {
  background: var(--color-bg);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.reviews {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.review-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.review-card .stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--color-text);
}

.review-card .author {
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
}

.features-section {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.feature-card {
  background: var(--color-bg);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.faq-section {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.cta-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  text-align: center;
}

.cta-inner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-small {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.hero-small-inner img {
  width: 100%;
  max-width: 800px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-small h1 {
  color: #ffffff;
}

.hero-small p {
  color: #cbd5e1;
  font-size: 1.2rem;
}

.gallery-intro {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.gallery-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gallery-intro-content p {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.gallery-full {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.gallery-features {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.feature-box {
  text-align: center;
  padding: 32px;
  background: var(--color-bg);
  border-radius: 12px;
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.services-detail {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.service-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.service-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.additional-services {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.safety-standards {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.safety-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.safety-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-mission {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.values-section {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.team-section {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.team-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.team-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.kontakt-preview, .kontakt-detail {
  padding: var(--spacing-section) 0;
  background: var(--color-primary);
  color: #ffffff;
}

.kontakt-preview h2, .kontakt-detail h2 {
  color: #ffffff;
}

.kontakt-inner, .kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.kontakt-form-wrapper p {
  color: #cbd5e1;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group select {
  color-scheme: dark;
}

.form-group select option {
  background-color: var(--color-primary);
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.faq-wrapper h3 {
  color: var(--color-accent);
  margin-bottom: 24px;
}

.kontakt-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
}

.kontakt-info h2 {
  text-align: left;
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 24px;
}

.info-block h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-block p {
  color: #cbd5e1;
}

footer {
  margin-top: auto;
  background: #050d1a;
  color: #cbd5e1;
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo .logo span {
  color: #ffffff;
}

.footer-logo p {
  margin-top: 16px;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

@media (max-width: 992px) {
  .grid-3, .grid-4, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-inner,
  .story-inner,
  .kontakt-inner,
  .kontakt-grid,
  .about-inner,
  .custom-routes-inner,
  .safety-inner,
  .team-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
    font-size: 0.9rem;
  }

  .grid-2, .grid-3, .grid-4, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  :root {
    --spacing-section: 40px;
    --spacing-inner: 32px;
  }
}

@media (max-width: 640px) {
  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
    white-space: normal;
  }

  .mandatory-notice,
  .footer-contact,
  .footer-col,
  .footer-logo {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header-inner {
    padding: 12px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  input:not([type="checkbox"]),
  select,
  textarea,
  button[type="submit"] {
    width: 100%;
    max-width: 100%;
  }

  .thanks-card {
    padding: 24px 16px;
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }
}

.footer-disclaimer,
.footer-copyright {
  grid-column: 1 / -1;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.last-updated {
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.hero-small .last-updated {
  color: #cbd5e1;
  text-align: center;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: left;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.thanks-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 64px 20px;
}

.thanks-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
  text-align: center;
  max-width: 600px;
  width: 100%;
  border-top: 4px solid #d4af37;
}

.thanks-card .logo {
  justify-content: center;
  margin-bottom: 32px;
}

.thanks-card h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #0a192f;
}

.thanks-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 16px;
}

.thanks-card .highlight {
  color: #d4af37;
  font-weight: 600;
}

.thanks-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 24px;
}

.season-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.highlight-card {
  padding: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
}