/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sand: #e2c799;
  --indigo: #233b6e;
  --sea: #3aa6b9;
  --clay: #b75d5b;
  --paper: #fffbf2;

  --font-family: "Roboto", sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--indigo);
  background-color: var(--paper);
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--indigo);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: var(--indigo);
}

a {
  color: var(--sea);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--clay);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.btn-primary {
  background-color: var(--sea);
  color: var(--paper);
}

.btn-primary:hover {
  background-color: var(--indigo);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: var(--sand);
  color: var(--indigo);
}

.btn-secondary:hover {
  background-color: var(--clay);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--sea);
  border: 2px solid var(--sea);
}

.btn-outline:hover {
  background-color: var(--sea);
  color: white;
}

/* Header */
.header {
  background-color: var(--paper);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--indigo);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sea);
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--indigo);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--sea) 0%, var(--indigo) 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Page Hero Section */
.page-hero {
  background: linear-gradient(135deg, var(--sea) 0%, var(--indigo) 100%);
  color: white;
  padding: 140px 0 60px; /* Увеличенный верхний отступ для фиксированного header */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.page-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
    repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--sea);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: var(--paper);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(226, 199, 153, 0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.card-title {
  color: var(--indigo);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--indigo);
  margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background-color: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(58, 166, 185, 0.1);
}

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

.form-error {
  color: var(--clay);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: var(--clay);
}

.form-group.error .form-error {
  display: block;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--sand);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 2rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: white;
}

.timeline-date {
  position: absolute;
  top: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--sea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -20px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border: 2px solid var(--sand);
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

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

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--sea);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--indigo);
}

.cookie-decline {
  background-color: var(--sand);
  color: var(--indigo);
}

.cookie-decline:hover {
  background-color: var(--clay);
  color: white;
}

/* Routes Page Styles */
.section-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.section-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.section-description {
  font-size: 1.1rem;
  color: var(--indigo);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Route Cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.route-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.route-card.featured {
  border-color: var(--sea);
}

.route-card.capital {
  border-color: var(--indigo);
}

.route-card.historical {
  border-color: var(--clay);
}

.route-card.nature {
  border-color: var(--sand);
}

.route-card.adventure {
  border-color: var(--sea);
}

.route-card.cultural {
  border-color: var(--clay);
}

.route-header {
  background: linear-gradient(135deg, var(--sea) 0%, var(--indigo) 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.route-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(100%);
}

.route-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.route-content {
  padding: 2rem;
}

.route-description {
  color: var(--indigo);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.route-details {
  background: var(--paper);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.route-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.route-highlights li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand);
  color: var(--indigo);
  position: relative;
  padding-left: 1.5rem;
}

.route-highlights li:last-child {
  border-bottom: none;
}

.route-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: bold;
}

.route-price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--sea);
  background: var(--paper);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

/* Seasonal Routes */
.seasonal-routes {
  margin-bottom: 4rem;
}

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

.season-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--sand);
}

.season-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.season-card.spring {
  border-left-color: var(--sand);
}

.season-card.summer {
  border-left-color: var(--sea);
}

.season-card.autumn {
  border-left-color: var(--clay);
}

.season-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.season-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.season-period {
  background: var(--paper);
  color: var(--indigo);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  margin-left: auto;
}

.season-description {
  color: var(--indigo);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.season-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.season-highlights li {
  padding: 0.5rem 0;
  color: var(--indigo);
  position: relative;
  padding-left: 1.5rem;
}

.season-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: bold;
}

.recommended-routes {
  background: var(--paper);
  padding: 1rem;
  border-radius: var(--border-radius);
  color: var(--indigo);
  font-size: 0.9rem;
}

/* Travel Types */
.travel-types {
  margin-bottom: 4rem;
}

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

.travel-type-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.travel-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.travel-type-card.luxury {
  border-color: var(--clay);
}

.travel-type-card.comfort {
  border-color: var(--sea);
}

.travel-type-card.budget {
  border-color: var(--sand);
}

.type-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.type-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.type-description {
  color: var(--indigo);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.type-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.type-price {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--sea);
  background: var(--paper);
  padding: 1rem;
  border-radius: var(--border-radius);
}

/* Special Offers */
.special-offers {
  margin-bottom: 4rem;
}

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

.offer-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.offer-card.early-bird {
  border-color: var(--sea);
}

.offer-card.group-discount {
  border-color: var(--indigo);
}

.offer-card.student-discount {
  border-color: var(--clay);
}

.offer-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--clay);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.offer-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.offer-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.offer-description {
  color: var(--indigo);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offer-details {
  background: var(--paper);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.offer-validity {
  text-align: center;
  font-weight: bold;
  color: var(--sea);
  background: rgba(58, 166, 185, 0.1);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: var(--sand);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--sand);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Destinations Section */
.destinations {
  padding: 80px 0;
  background-color: var(--paper);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.destination-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-image {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.destination-icon {
  width: 48px;
  height: 48px;
}

.route-image {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.route-icon {
  width: 48px;
  height: 48px;
}

.tip-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.tip-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}

/* Tips sections styling */
.tips-section {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.tips-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.preparation-section {
  border-color: var(--clay);
}

.logistics-section {
  border-color: var(--sea);
}

.practical-section {
  border-color: var(--sand);
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--paper);
}

.section-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.section-header h3 {
  color: var(--indigo);
  font-size: 1.5rem;
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.site-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-icon {
  width: 32px;
  height: 32px;
}

/* Culture page styles */
.culture-content {
  padding: 2rem 0;
}

.culture-section {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--sea);
}

.culture-section h2 {
  color: var(--indigo);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.culture-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--sea);
}

/* Traditional culture styles */
.traditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tradition-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--clay);
  text-align: center;
}

.tradition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tradition-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tradition-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.tradition-card h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.tradition-card p {
  color: var(--indigo);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tradition-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tradition-card li {
  padding: 0.5rem 0;
  color: var(--indigo);
  position: relative;
  padding-left: 1.5rem;
}

.tradition-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: bold;
}

/* Modern culture styles */
.modern-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.culture-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--sand);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.culture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.culture-item-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.culture-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.culture-item p {
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.culture-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.culture-item li {
  padding: 0.5rem 0;
  color: var(--indigo);
  position: relative;
  padding-left: 1.5rem;
}

.culture-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: bold;
}

/* Sports section styles */
.sport-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--clay);
  text-align: center;
}

.sport-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sport-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.sport-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.sport-item p {
  color: #555;
  line-height: 1.6;
}

/* Culture examples styling */
.culture-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.culture-examples span {
  background: var(--sea);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Festivals section styles */
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.festival-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--clay);
  text-align: center;
}

.festival-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.festival-date {
  background: var(--clay);
  color: var(--paper);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.festival-card h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.festival-card p {
  color: var(--indigo);
  line-height: 1.6;
}

/* Crafts section styles */
.crafts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.craft-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--sand);
  text-align: center;
}

.craft-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.craft-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.craft-item h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.craft-item p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
}

/* Language section styles */
.language-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.language-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 4px solid var(--sea);
  text-align: center;
}

.language-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.language-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.language-card h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.language-card p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.language-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.language-features span {
  background: var(--indigo);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Education section styles */
.education-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--paper) 100%);
  padding: 4rem 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.education-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--clay);
  text-align: center;
}

.education-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.education-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.education-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.education-item p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.education-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.education-features span {
  background: var(--clay);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Costumes section styles */
.costumes-section {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--paper) 100%);
  padding: 4rem 0;
}

.costumes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.costume-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--sea);
  text-align: center;
}

.costume-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.costume-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.costume-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.costume-item p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.costume-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.costume-features span {
  background: var(--sea);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Architecture section styles */
.architecture-section {
  background: linear-gradient(135deg, var(--clay) 0%, var(--paper) 100%);
  padding: 4rem 0;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.architecture-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--sand);
  text-align: center;
}

.architecture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.architecture-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.architecture-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.architecture-item p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.architecture-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.architecture-examples span {
  background: var(--sand);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Sports section styles */
.sports-section {
  background: linear-gradient(135deg, var(--sea) 0%, var(--paper) 100%);
  padding: 4rem 0;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.sport-item {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--clay);
  text-align: center;
}

.sport-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sport-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.sport-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.sport-item p {
  color: var(--indigo);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.5rem;
}

.sport-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.sport-features span {
  background: var(--clay);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Additional culture page icons */
.fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fact-icon {
  width: 20px;
  height: 20px;
}

/* Contact page styles */
.contact-content {
  padding: 4rem 0;
}

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

.contact-info h2,
.contact-form-section h2 {
  color: var(--indigo);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  flex-shrink: 0;
}

.contact-svg {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.contact-details h3 {
  color: var(--indigo);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  color: var(--indigo);
  margin: 0;
  line-height: 1.6;
}

.contact-details a {
  color: var(--sea);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--clay);
}

.schedule p {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--indigo);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--sand);
  color: var(--sea);
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

/* Registration form styles */
.registration {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.registration .container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.registration .section-title {
  font-size: 2.2rem;
  color: var(--indigo);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.registration-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.registration-form .form-group {
  margin-bottom: 1.8rem;
  text-align: left;
}

.registration-form .form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 400;
  color: var(--indigo);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.registration-form input,
.registration-form select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-family);
  transition: all 0.3s ease;
  background-color: #fafbfc;
  color: var(--indigo);
  box-sizing: border-box;
}

.registration-form input:focus,
.registration-form select:focus {
  outline: none;
  border-color: var(--sea);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(58, 166, 185, 0.08);
  transform: translateY(-1px);
}

.registration-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  color: var(--indigo);
  font-size: 0.9rem;
  line-height: 1.5;
}

.registration-form .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sea);
}

.registration-form .btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--sea), var(--indigo));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

.registration-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(58, 166, 185, 0.3);
  background: linear-gradient(135deg, #4a9fb8, #2c5282);
}

.registration-form .error-message {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

/* Contact form styles */
.contact-form {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background-color: var(--paper);
  color: var(--indigo);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(58, 166, 185, 0.1);
}

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

.error-message {
  color: var(--clay);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--indigo);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: var(--sea);
  text-decoration: none;
}

.checkbox-label a:hover {
  color: var(--clay);
}

/* Map section */
.map-section {
  margin-bottom: 4rem;
}

.map-section h2 {
  color: var(--indigo);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  background: var(--paper);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  min-height: 400px;
}

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

.map-info {
  padding: 2rem;
}

.map-info h3 {
  color: var(--indigo);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--sand);
  border-radius: var(--border-radius);
}

.transport-icon {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.transport-item strong {
  color: var(--indigo);
  display: block;
  margin-bottom: 0.5rem;
}

.transport-item p {
  color: var(--indigo);
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

/* Additional info section */
.additional-info {
  margin-bottom: 4rem;
}

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

.info-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--sea);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(85%) saturate(1247%)
    hue-rotate(184deg) brightness(95%) contrast(95%);
}

.info-card h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: var(--indigo);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-link {
  color: var(--sea);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-link:hover {
  color: var(--clay);
}

/* Responsive design for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    min-height: 300px;
  }

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

  .contact-item {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Feature icons */
.feature-svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

/* Avatar icons */
.avatar-svg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.destination-card h3 {
  color: var(--indigo);
  margin-bottom: 15px;
}

.destination-card p {
  color: var(--indigo);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo), var(--sea));
  color: white;
}

.statistics .section-title {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 32px;
  height: 32px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  color: var(--indigo);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: var(--paper);
}

.gallery-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* History page styles */
.history-content {
  padding: 2rem 0;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--indigo);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 2rem 0;
  padding: 0 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--indigo);
  border-radius: 50%;
  border: 3px solid var(--paper);
}

.timeline-item:nth-child(odd)::before {
  right: calc(50% - 6px);
}

.timeline-item:nth-child(even)::before {
  left: calc(50% - 6px);
}

.timeline-content {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--indigo);
  width: 100%;
  box-sizing: border-box;
  min-height: fit-content;
}

.timeline-content h3 {
  color: var(--indigo);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.timeline-period {
  color: var(--clay);
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Section styles */
.section {
  padding: 3rem 0;
  margin: 2rem 0;
}

.section:nth-child(odd) {
  background: linear-gradient(
    135deg,
    var(--sand) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.section:nth-child(even) {
  background: var(--paper);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.section h2 {
  color: var(--indigo);
  font-size: 2.2rem;
  margin: 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-description {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 4px solid var(--sea);
}

/* Historical sites styles */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.site-card {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--clay);
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.site-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.site-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.site-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.site-period {
  background: var(--clay);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
}

/* Historical figures styles */
.figures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.figure-card {
  background: linear-gradient(135deg, var(--sand) 0%, var(--paper) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--sea);
  text-align: center;
}

.figure-card:hover {
  transform: translateY(-3px);
}

.figure-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.figure-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.figure-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Archaeological discoveries styles */
.discoveries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.discovery-card {
  background: linear-gradient(135deg, var(--paper) 0%, var(--sand) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--indigo);
  text-align: center;
}

.discovery-card:hover {
  transform: translateY(-3px);
}

.discovery-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.discovery-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.discovery-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.discovery-period {
  background: var(--indigo);
  color: var(--paper);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
}

/* Silk road styles */
.silk-road-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.route-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--clay);
  text-align: center;
}

.route-card:hover {
  transform: translateY(-3px);
}

.route-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.route-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.route-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Traditional crafts styles */
.crafts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.craft-card {
  background: linear-gradient(135deg, var(--sand) 0%, var(--paper) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--sea);
  text-align: center;
}

.craft-card:hover {
  transform: translateY(-3px);
}

.craft-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.craft-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.craft-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Historical legends styles */
.legends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.legend-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--clay);
  text-align: center;
}

.legend-card:hover {
  transform: translateY(-3px);
}

.legend-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.legend-card h4 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legend-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 14px !important;
    right: auto !important;
  }

  .sites-grid,
  .figures-grid,
  .discoveries-grid,
  .silk-road-grid,
  .crafts-grid,
  .legends-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 2rem 0;
    margin: 1rem 0;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .section-description {
    padding: 1rem;
    font-size: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-card {
    padding: 20px;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-overlay {
    padding: 20px 15px 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .testimonials-grid {
    gap: 15px;
  }

  .testimonial-card {
    padding: 15px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .gallery-item {
    height: 180px;
  }

  .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }

  .timeline-item {
    padding-left: 40px !important;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: 9px !important;
  }

  .site-card,
  .figure-card,
  .discovery-card,
  .route-card,
  .craft-card,
  .legend-card {
    padding: 1.5rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section-icon {
    width: 32px;
    height: 32px;
  }
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  border: 2px solid var(--sand);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  transition: var(--transition);
  max-width: 500px;
  margin: 0 auto;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-icon {
  flex-shrink: 0;
  color: var(--sea);
  margin-top: 0.25rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  color: var(--indigo);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: var(--indigo);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

.cookie-text a:hover {
  color: var(--clay);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.cookie-actions .btn-primary {
  background: var(--sea);
  color: white;
}

.cookie-actions .btn-primary:hover {
  background: var(--indigo);
}

.cookie-actions .btn-secondary {
  background: transparent;
  color: var(--indigo);
  border: 1px solid var(--sand);
}

.cookie-actions .btn-secondary:hover {
  background: var(--sand);
  color: var(--indigo);
}

/* Thank You Page Styles */
.thank-you-hero {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-section {
  background: var(--paper);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border-top: 4px solid var(--sea);
}

.success-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.success-section .section-icon {
  background: var(--sea);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  color: var(--indigo);
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.hero-subtitle {
  color: var(--indigo);
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.8;
}

.response-details-section,
.action-section {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--clay);
}

.response-details-section .section-header,
.action-section .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.response-details-section .section-icon,
.action-section .section-icon {
  background: var(--clay);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.response-details-section h2,
.action-section h2 {
  color: var(--indigo);
  margin: 0;
  font-size: 1.8rem;
}

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

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  background: var(--sea);
  color: var(--paper);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-item span {
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.5;
}

.timing-section {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  border: 2px solid var(--sand);
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timing-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: var(--border-radius);
}

.timing-item h3 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timing-item p {
  color: var(--indigo);
  margin: 0;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.additional-info {
  background: var(--sand);
  padding: 4rem 0;
}

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

.info-section,
.newsletter-section,
.routes-section {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--sea);
}

.info-section:hover,
.newsletter-section:hover,
.routes-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-section .section-header,
.newsletter-section .section-header,
.routes-section .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-section .section-icon,
.newsletter-section .section-icon,
.routes-section .section-icon {
  background: var(--sea);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-section h3,
.newsletter-section h3,
.routes-section h3 {
  color: var(--indigo);
  margin: 0;
  font-size: 1.4rem;
}

.section-content p {
  color: var(--indigo);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-link {
  color: var(--sea);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-link:hover {
  color: var(--clay);
}

.emergency-contact {
  color: var(--paper);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.emergency-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  pointer-events: none;
}

.emergency-contact .container {
  position: relative;
  z-index: 1;
}

.emergency-info {
  background: var(--paper);
  color: var(--indigo);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.emergency-contact h2 {
  color: var(--clay);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.emergency-contact h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sea);
  border-radius: 2px;
}

.emergency-contact p {
  color: var(--indigo);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

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

.emergency-contact .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: 15px;
  border-left: 5px solid var(--sea);
  transition: var(--transition);
}

.emergency-contact .contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.emergency-contact .contact-item strong {
  color: var(--clay);
  font-weight: 600;
  min-width: 80px;
}

.emergency-contact .contact-item a {
  color: var(--sea);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.emergency-contact .contact-item a:hover {
  color: var(--indigo);
}

.emergency-contact .contact-item span {
  color: var(--indigo);
  font-weight: 500;
}

.emergency-contact .note {
  background: rgba(58, 166, 185, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--sea);
  font-size: 0.95rem;
  margin-top: 2rem;
  text-align: left;
}

.emergency-contact .note strong {
  color: var(--clay);
}

.social-media {
  background: var(--paper);
  padding: 3rem 0;
  text-align: center;
}

.social-content h2 {
  color: var(--indigo);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.social-content p {
  color: var(--indigo);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.social-media .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-media .social-link {
  background: var(--sand);
  padding: 1rem;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media .social-link:hover {
  background: var(--sea);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .thank-you-hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .success-section,
  .response-details-section,
  .action-section {
    padding: 2rem 1rem;
  }

  .response-details {
    gap: 1rem;
  }

  .detail-item {
    padding: 1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .timing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .emergency-contact {
    padding: 2rem 0;
  }

  .emergency-info {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .emergency-contact h2 {
    font-size: 1.6rem;
  }

  .emergency-contact .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem;
  }

  .emergency-contact .contact-item:hover {
    transform: translateY(-2px);
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-content {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 100px;
  }
}

/* Travel Tips Section */
.travel-tips {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--paper) 0%, #f8f4e6 100%);
}

.travel-tips .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.travel-tips .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sea), var(--indigo));
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.travel-tips .section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--indigo);
}

.travel-tips .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tip-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  transform: translateY(0);
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-image {
  justify-content: center;
  overflow: hidden;
}

.tip-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tip-card:hover .tip-photo {
  transform: scale(1.1);
}

.tip-content {
  padding: 25px;
}

.tip-content h3 {
  color: var(--indigo);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.tip-content p {
  color: #666;
  line-height: 1.6;
}

/* Cuisine Section */
.cuisine {
  padding: 80px 0;
  background: var(--paper);
}

.cuisine .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.cuisine .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clay), #d67b79);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.cuisine-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cuisine-text h3 {
  font-size: 2rem;
  color: var(--indigo);
  margin-bottom: 20px;
}

.cuisine-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.cuisine-list {
  list-style: none;
  padding: 0;
}

.cuisine-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 1.05rem;
}

.cuisine-list li:last-child {
  border-bottom: none;
}

.cuisine-list strong {
  color: var(--clay);
  font-weight: 600;
}

.cuisine-image {
  position: relative;
}

.cuisine-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Nature Section */
.nature {
  background: linear-gradient(135deg, #f0f8ff 0%, var(--paper) 100%);
}

.nature .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.nature .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.nature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.nature-item {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.nature-item:hover {
  transform: translateY(-5px);
}

.nature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.nature-item:hover .nature-image {
  transform: scale(1.1);
}

.nature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 25px 25px;
  transform: translateY(100%);
  transition: var(--transition);
}

.nature-item:hover .nature-overlay {
  transform: translateY(0);
}

.nature-overlay h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.nature-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Architecture Section */
.architecture {
  padding: 80px 0;
  background: var(--paper);
}

.architecture .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.architecture .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--indigo), #1a2a5e);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.architecture-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  flex-direction: row-reverse;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 100px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-image {
  flex: 1;
  min-width: 250px;
}

.timeline-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.timeline-text {
  flex: 1;
}

.timeline-text h3 {
  color: var(--indigo);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.timeline-text p {
  color: #666;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Festivals Section */
.festivals {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff3e0 0%, var(--paper) 100%);
}

.festivals .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.festivals .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.festivals-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.festival-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.festival-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.festival-image {
  height: 200px;
  overflow: hidden;
}

.festival-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.festival-card:hover .festival-photo {
  transform: scale(1.1);
}

.festival-info {
  padding: 25px;
}

.festival-info h3 {
  color: var(--indigo);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.festival-date {
  color: var(--clay);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.festival-info p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Sports Section */
.sports {
  padding: 80px 0;
  background: var(--paper);
}

.sports .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sports .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sea), #2a8a9b);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.sports-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.sport-category {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.sport-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sport-category:hover::before {
  opacity: 1;
}

.sport-category:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border-color: var(--indigo);
}

.category-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.category-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    #ff6b6b,
    #feca57,
    #48dbfb,
    #ff9ff3,
    #ff6b6b
  );
  animation: rotate 3s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sport-category:hover .category-icon::before {
  opacity: 0.3;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sport-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.sport-category:hover .sport-image {
  transform: scale(1.1);
}

.sport-category h3 {
  color: var(--indigo);
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}

.sport-category h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  border-radius: 2px;
}

.sport-category ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
}

.sport-category li {
  padding: 12px 0 12px 30px;
  color: #5a6c7d;
  border-bottom: 1px solid #f1f3f4;
  font-size: 1rem;
  position: relative;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.sport-category li::before {
  content: "🏃‍♂️";
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1rem;
}

.sport-category li:nth-child(2)::before {
  content: "🏔️";
}

.sport-category li:nth-child(3)::before {
  content: "🚴‍♀️";
}

.sport-category li:hover {
  color: var(--indigo);
  padding-left: 35px;
}

.sport-category li:last-child {
  border-bottom: none;
}

/* Education Section */
.education {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f5e8 0%, var(--paper) 100%);
}

.education .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.education .section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.education-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
  overflow: hidden;
}

.program-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.program-card:hover .program-photo {
  transform: scale(1.1);
}

.program-content {
  padding: 25px;
}

.program-content h3 {
  color: var(--indigo);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.program-duration {
  color: var(--sea);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.program-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: linear-gradient(135deg, var(--sand), #d4b891);
  color: var(--indigo);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .tips-grid,
  .nature-grid,
  .festivals-carousel,
  .sports-categories,
  .education-programs {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cuisine-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-content {
    flex-direction: column !important;
    text-align: center;
  }

  .timeline-image {
    min-width: auto;
  }

  .travel-tips .section-title,
  .cuisine .section-title,
  .nature .section-title,
  .architecture .section-title,
  .festivals .section-title,
  .sports .section-title,
  .education .section-title {
    font-size: 2rem;
  }

  .tip-card,
  .festival-card,
  .program-card {
    margin: 0 10px;
  }

  .sport-category {
    padding: 20px;
  }

  .category-icon {
    width: 80px;
    height: 80px;
  }
}

/* Hero Image Styles */
.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.05);
}

/* Updated Features Grid Styles */
.routes-section,
.history-section,
.culture-section {
  padding: 80px 0;
  background: var(--paper);
}

.history-section {
  background: #ffffff;
}

.culture-section {
  background: var(--paper);
}

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

.feature-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sea), var(--indigo));
  transition: left 0.4s ease;
}

.feature-item:hover::before {
  left: 0;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;

  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  order: -1;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.1);
}

.feature-item h3 {
  color: var(--indigo);
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  order: 0;
}

.feature-item p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: justify;
  order: 1;
}

/* Intro Section Styles */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.intro-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 20px 20px 0 0;
}

.intro-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
}

.intro-card h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.intro-card p {
  color: #5a6c7d;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-main-image {
    height: 250px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-item {
    padding: 2rem;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .intro-card {
    padding: 30px 20px;
  }

  .intro-card h3 {
    font-size: 1.5rem;
  }

  .intro-card p {
    font-size: 1rem;
  }

  .sport-category {
    padding: 25px 20px;
  }

  .category-icon {
    width: 100px;
    height: 100px;
  }

  .sport-category h3 {
    font-size: 1.4rem;
  }

  .sport-category li {
    font-size: 0.9rem;
    padding: 10px 0 10px 25px;
  }
}

/* Cookie Policy Styles */
.legal-content {
  padding: 2rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-document {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.document-info {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--sea) 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

.document-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

.cookie-section {
  margin: 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.cookie-section:last-child {
  border-bottom: none;
}

.cookie-section:hover {
  background: rgba(var(--sea-rgb), 0.02);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(var(--indigo-rgb), 0.05) 0%, rgba(var(--sea-rgb), 0.05) 100%);
  border-left: 4px solid var(--sea);
  margin: 0;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--sea) 100%);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.section-header h2 {
  margin: 0;
  color: var(--indigo);
  font-size: 1.8rem;
  font-weight: 600;
}

.section-content {
  padding: 2rem;
  line-height: 1.7;
}

.section-content h3 {
  color: var(--indigo);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(var(--sea-rgb), 0.2);
}

.section-content h4 {
  color: var(--clay);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

.section-content p {
  margin: 1rem 0;
  color: #555;
  font-size: 1rem;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 0;
}

.section-content li {
  list-style: none;
  margin: 0.8rem 0;
  padding: 0.8rem 1rem;
  background: rgba(var(--sea-rgb), 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--sea);
  transition: all 0.3s ease;
}

.section-content li:hover {
  background: rgba(var(--sea-rgb), 0.1);
  transform: translateX(5px);
}

.section-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.section-content ol li {
  list-style: decimal;
  background: rgba(var(--indigo-rgb), 0.05);
  border-left: 3px solid var(--indigo);
}

.cookie-benefits {
  background: linear-gradient(135deg, rgba(var(--sea-rgb), 0.05) 0%, rgba(var(--indigo-rgb), 0.05) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(var(--sea-rgb), 0.1);
}

.cookie-benefits h3 {
  color: var(--sea);
  margin-top: 0;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.cookie-benefits ul {
  margin: 0;
}

.cookie-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  border-left: 3px solid var(--sea);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-security {
  background: linear-gradient(135deg, rgba(var(--clay-rgb), 0.05) 0%, rgba(var(--sand-rgb), 0.1) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(var(--clay-rgb), 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-security svg {
  color: var(--clay);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookie-type {
  background: rgba(var(--indigo-rgb), 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(var(--indigo-rgb), 0.1);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.cookie-type-header h3 {
  margin: 0;
  border: none;
  padding: 0;
  color: var(--indigo);
}

.cookie-table {
  margin: 1.5rem 0;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.cookie-table th {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--sea) 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  color: #555;
  font-size: 0.9rem;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) {
  background: rgba(var(--sea-rgb), 0.02);
}

.cookie-table tr:hover {
  background: rgba(var(--sea-rgb), 0.05);
}

.browser-instructions {
  background: rgba(var(--clay-rgb), 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(var(--clay-rgb), 0.1);
}

.contact-info {
  background: linear-gradient(135deg, rgba(var(--indigo-rgb), 0.05) 0%, rgba(var(--sea-rgb), 0.05) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(var(--sea-rgb), 0.1);
}

.contact-info p {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info strong {
  color: var(--indigo);
  min-width: 120px;
}

.contact-info a {
  color: var(--sea);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--indigo);
  text-decoration: underline;
}

/* Responsive Design for Cookie Policy */
@media (max-width: 768px) {
  .legal-content {
    padding: 1rem 0 2rem;
  }
  
  .legal-document {
    margin: 0 1rem;
    border-radius: 12px;
  }
  
  .document-info {
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
  }
  
  .section-header {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-content {
    padding: 1.5rem;
  }
  
  .cookie-table {
    font-size: 0.85rem;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 0.8rem 0.5rem;
  }
  
  .contact-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .contact-info strong {
    min-width: auto;
  }
}
