/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1e40af;
  --secondary-gold: #d4af37;
  --accent-turquoise: #06b6d4;
  --dark-blue: #0f172a;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --success-green: #10b981;
  --warning-orange: #f59e0b;
  --error-red: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: #1e40af;
 
}


/* Legal Hero Section */
.legal-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  margin-top: 80px;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary-gold);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Legal Content Section */
.legal-content {
  padding: 80px 0;
  background: var(--light-bg);
}

.content-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

/* Sidebar */
.content-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-sticky h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav a {
  padding: 12px 15px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--light-bg);
  border-left-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateX(5px);
}

/* Main Content */
.content-main {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-article {
  max-width: 100%;
}

.article-section {
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-turquoise));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.section-icon i {
  font-size: 28px;
  color: var(--white);
}

.article-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.article-section h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 30px 0 15px;
}

.article-section h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 20px 0 10px;
}

.article-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.article-section ul,
.article-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-section li {
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

.article-section li strong {
  color: var(--text-dark);
}

/* Info Boxes */
.info-box,
.warning-box,
.highlight-box {
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-box {
  background: #dbeafe;
  border-left: 4px solid var(--primary-blue);
}

.warning-box {
  background: #fef3c7;
  border-left: 4px solid var(--warning-orange);
}

.highlight-box {
  background: #d1fae5;
  border-left: 4px solid var(--success-green);
}

.info-box i,
.warning-box i,
.highlight-box i {
  font-size: 24px;
  flex-shrink: 0;
}

.info-box i {
  color: var(--primary-blue);
}

.warning-box i {
  color: var(--warning-orange);
}

.highlight-box i {
  color: var(--success-green);
}

.info-box p,
.warning-box p,
.highlight-box p {
  margin: 0;
  color: var(--text-dark);
}

.info-box h4,
.warning-box h4,
.highlight-box h4 {
  margin: 0 0 10px 0;
}

/* Grids and Cards */
.usage-grid,
.services-grid,
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.usage-card,
.service-card,
.right-card {
  padding: 25px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.usage-card:hover,
.service-card:hover,
.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.usage-card i,
.service-card i,
.right-card i {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.usage-card h4,
.service-card h4,
.right-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.usage-card p,
.service-card p,
.right-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Protection List */
.protection-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

.protection-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.protection-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-turquoise));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.protection-content h4 {
  margin: 0 0 8px 0;
  color: var(--text-dark);
}

.protection-content p {
  margin: 0;
  color: var(--text-light);
}

/* Tables */
.cookies-table,
.cancellation-table {
  margin: 30px 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: var(--primary-blue);
  color: var(--white);
}

th,
td {
  padding: 15px;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
  background: var(--light-bg);
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.contact-card {
  padding: 30px;
  background: var(--light-bg);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.booking-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.booking-step:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-turquoise));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: var(--text-dark);
}

.step-content p {
  margin: 0;
  color: var(--text-light);
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

.payment-method i {
  font-size: 24px;
  color: var(--primary-blue);
}

/* Responsibilities List */
.responsibilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.responsibility-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

.responsibility-item i {
  font-size: 20px;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.responsibility-item p {
  margin: 0;
  color: var(--text-dark);
}

/* Thanks Page Styles */
.thanks-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  margin-top: 80px;
  padding: 60px 20px;
}

.thanks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.thanks-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.success-animation {
  margin-bottom: 40px;
  animation: scaleIn 0.6s ease;
}

.success-circle {
  width: 120px;
  height: 120px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

.success-checkmark i {
  font-size: 60px;
  color: var(--white);
  animation: checkmark 0.8s ease 0.3s backwards;
}

.thanks-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.thanks-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.thanks-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.info-item i {
  font-size: 36px;
  color: var(--secondary-gold);
}

.info-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s backwards;
}

.btn-primary,
.btn-outline {
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--secondary-gold);
  color: var(--dark-blue);
}

.btn-primary:hover {
  background: #c19b2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* What's Next Section */
.whats-next {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.step-card {
  padding: 40px;
  background: var(--light-bg);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-turquoise));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.step-icon i {
  font-size: 36px;
  color: var(--white);
}

.step-card h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-card p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.step-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.step-link:hover {
  gap: 12px;
  color: var(--accent-turquoise);
}

/* Popular Tours Section */
.popular-tours {
  padding: 80px 0;
  background: var(--light-bg);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-gold);
  color: var(--dark-blue);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tour-content {
  padding: 25px;
}

.tour-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.tour-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tour-btn:hover {
  background: var(--dark-blue);
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  background: var(--light-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating i {
  color: var(--secondary-gold);
  font-size: 14px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

/* Social Section */
.social-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  text-align: center;
}

.social-content h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 15px;
}

.social-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-link-large:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.social-link-large i {
  font-size: 36px;
}

.social-link-large span {
  font-size: 14px;
  font-weight: 600;
}

/* Enhanced Footer */
.legal-footer {
  background: var(--dark-blue);
  color: var(--white);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary-gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 28px;
  color: var(--secondary-gold);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary-gold);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-gold);
  transform: translateX(5px);
}

.footer-contacts {
  list-style: none;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-contacts i {
  color: var(--secondary-gold);
  margin-top: 3px;
}

.footer-subscribe {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-subscribe input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-subscribe button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--secondary-gold);
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-subscribe button:hover {
  background: #c19b2e;
  transform: scale(1.1);
}

.footer-certificates {
  display: flex;
  gap: 10px;
}

.footer-certificates img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-certificates img:hover {
  opacity: 1;
}

.footer-partners {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners h4 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--secondary-gold);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 60px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-gold);
}

.footer-payment {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

.footer-payment i {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-payment i:hover {
  opacity: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-gold);
  color: var(--dark-blue);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c19b2e;
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes checkmark {
  from {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1,
  .thanks-title {
    font-size: 32px;
  }

  .content-main {
    padding: 30px 20px;
  }

  .article-section h2 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .thanks-title {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .thanks-info {
    grid-template-columns: 1fr;
  }
  .cookies-table {
  display: none;
  }
  .content-sidebar {
    max-width: 300px;
  }
  section {
    max-width: 355px;
  }
  .highlight-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cancellation-table {
    display: none;
  }
  .content-main {
    max-width: 355px;
  }
  .content-wrapper {
    max-width: 355px;
  }
  .sidebar-sticky {
    max-width: 350px;
  }
  .content-sidebar {
    max-width: 340px;
  }
  .article-section {
    max-width: 360px;
}

section {
  max-width: 360px;
  overflow-x: hidden;
}}
body {
  overflow-x: hidden;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #fefefe; /* Adjust to match your design */
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #007bff; /* Adjust to match your design */
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 3px;
  background: #333; /* Adjust to match your design */
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #341cd1; /* Adjust to match your design */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-menu a {
    font-size: 18px;
  }

  /* Prevent body scrolling when menu is open */
  body.no-scroll {
    overflow: hidden;
  }
}