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

:root {
  --primary-color: #00D4AA;
  --secondary-color: #00B4D8;
  --accent-color: #FF6B6B;
  --dark-bg: #1A1A1A;
  --light-bg: #F8FAFC;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --yellow-bg: #FEF3C7;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
  --gradient-secondary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2D2D2D 100%);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
  color: var(--white);
  margin: 0;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-banner button:first-child {
  background-color: #555;
  color: white;
}

.cookie-banner button:last-child {
  background-color: var(--primary-color);
  color: white;
}

.cookie-banner button:hover {
  transform: scale(1.05);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.logo {
  font-size: 2rem;
}

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

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
  }
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/photo1.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.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 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
  padding: 18px 36px;
  border: 2px solid var(--white);
  border-radius: var(--border-radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--light-bg) 0%, #F1F5F9 100%);
  padding: 100px 0;
  position: relative;
}

.stats::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="50" cy="50" r="1" fill="rgba(0,212,170,0.1)"/></svg>') repeat;
  opacity: 0.5;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--text-gray);
  font-weight: 500;
  margin: 0;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(rgba(248, 245, 237, 0.9), rgba(248, 245, 237, 0.9)), url('img/photo3.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.about::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 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
}

.about-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.about-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-weight: 400;
}

/* Features Section */
.features {
  background: linear-gradient(180deg, #2E7D32 0%, #4CAF50 100%);
  padding: 80px 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background-color: var(--white);
}

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

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/photo2.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.play-button {
  font-size: 4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Image Gallery Section */
.image-gallery {
  padding: 60px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

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

/* Photo backgrounds */
.photo5 {
  background-image: url('img/photo5.webp');
}

.photo6 {
  background-image: url('img/photo6.webp');
}

.photo7 {
  background-image: url('img/photo7.webp');
}

.photo8 {
  background-image: url('img/photo8.webp');
}

.photo9 {
  background-image: url('img/photo9.webp');
}

.photo10 {
  background-image: url('img/photo10.webp');
}

.photo11 {
  background-image: url('img/photo11.webp');
}

.photo12 {
  background-image: url('img/photo12.webp');
}

.photo13 {
  background-image: url('img/photo13.webp');
}

.photo14 {
  background-image: url('img/photo14.webp');
}

.photo15 {
  background-image: url('img/photo15.webp');
}

.photo16 {
  background-image: url('img/photo16.webp');
}

.photo17 {
  background-image: url('img/photo17.webp');
}

.photo18 {
  background-image: url('img/photo18.webp');
}

.photo19 {
  background-image: url('img/photo19.webp');
}

.photo20 {
  background-image: url('img/photo20.webp');
}

.photo22 {
  background-image: url('img/photo22.webp');
}

.photo23 {
  background-image: url('img/photo23.webp');
}

.photo24 {
  background-image: url('img/photo24.webp');
}

.photo25 {
  background-image: url('img/photo25.webp');
}

.photo26 {
  background-image: url('img/photo26.webp');
}

.photo27 {
  background-image: url('img/photo27.webp');
}

/* Registration Section */
.registration {
  background: var(--gradient-primary);
  padding: 80px 0;
  text-align: center;
}

.registration h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
}

.registration-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.registration-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background-color: var(--white);
}

.registration-form input::placeholder {
  color: var(--text-gray);
}

/* Newsletter Section */
.newsletter {
  background-color: #FFD54F;
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background-color: var(--white);
}

.newsletter-form input::placeholder {
  color: var(--text-gray);
}

.form-message {
  margin-top: 1rem;
  font-weight: bold;
}

.form-message.success {
  color: #4caf50;
}

.form-message.error {
  color: #f44336;
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: var(--white);
}

.news h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.news-card {
  background-color: var(--white);
  padding: 0;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
}

.rooster-news-image {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.fish-news-image {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.chickens-news-image {
  background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.dali-news-image {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.news-card h3 {
  color: var(--text-dark);
  margin: 20px 20px 10px 20px;
  font-size: 1.3rem;
  font-weight: bold;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0 20px 10px 20px;
}

.news-card p {
  color: var(--text-dark);
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

.news-link {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  background-color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 20px 20px 20px;
}

.news-link:hover {
  background-color: #45a049;
}

/* Adventures Section */
.adventures {
  background-color: var(--white);
  padding: 60px 0;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.adventure-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.adventure-card:hover {
  transform: translateY(-5px);
}

.adventure-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.outback-icon {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.kangaroo-icon {
  background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.dingo-icon {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
}

.koala-icon {
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.reef-icon {
  background: linear-gradient(135deg, #FF0000 0%, #FF4500 100%);
}

.sydney-icon {
  background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.adventure-content {
  flex: 1;
}

.adventure-content h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: bold;
}

.adventure-content p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--yellow-bg);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background-color: var(--white);
  color: var(--text-dark);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 20px 0;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Testimonial Section */
.testimonial {
  background-color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.testimonial blockquote {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonial cite {
  font-size: 1.2rem;
  font-style: normal;
  color: var(--text-dark);
  font-weight: bold;
}

/* Team Section */
.team {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.team-member {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.liam-photo {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.olivia-photo {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
}

.noah-photo {
  background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.ava-photo {
  background: linear-gradient(135deg, #F0E68C 0%, #F5DEB3 100%);
}

.team-member h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.team-member p {
  color: var(--text-dark);
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--yellow-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-details h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
}

.footer-main {
  background-color: var(--dark-bg);
  padding: 30px 0;
}

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

.footer p {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
}

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

.footer-legal {
  background-color: #F5F5DC;
  padding: 20px 0;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.legal-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  text-decoration: underline;
}

.separator {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Privacy Policy Page */
.privacy-policy {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #F1F5F9 100%);
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.privacy-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-section p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.privacy-section li {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.privacy-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;

}

.privacy-section a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.privacy-section a {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: inline-block;
  max-width: 100%;
  line-height: 1.4;
}

.privacy-section strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-section address {
  font-style: normal;
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  border-left: 4px solid var(--primary-color);
}

.footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
}

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

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

  .nav-brand {
    font-size: 1.2rem;
  }

  .logo img {
    height: 30px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-bg);
    flex-direction: column;
    padding: 20px;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }

  .nav-menu.active {
    display: flex;
    max-height: 400px;
  }

  .nav-menu a {
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }

  /* Stats Section */
  .stats .container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .stat-item h2 {
    font-size: 2.5rem;
  }

  /* Video Section */
  .video-section {
    padding: 40px 20px;
  }

  .video-container {
    max-width: 100%;
  }

  /* About Section */
  .about {
    padding: 60px 20px;
  }

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

  .about-card h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-card h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  /* Features Section */
  .features {
    padding: 60px 20px;
  }

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

  .feature-card {
    padding: 20px;
  }

  /* Gallery Section */
  .image-gallery {
    padding: 40px 20px;
  }

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

  /* Registration Section */
  .registration {
    padding: 60px 20px;
  }

  .registration h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  .registration-form {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }

  .registration-form input {
    width: 100%;
    padding: 12px 16px;
  }

  /* News Section */
  .news {
    padding: 60px 20px;
  }

  .news h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

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

  .news-card {
    padding: 20px;
  }

  .news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  /* Adventures Section */
  .adventures {
    padding: 60px 20px;
  }

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

  .adventure-card {
    flex-direction: column;
  }

  .adventure-image {
    height: 200px;
  }

  /* FAQ Section */
  .faq {
    padding: 60px 20px;
  }

  .faq h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  /* Testimonial Section */
  .testimonial {
    padding: 60px 20px;
    text-align: center;
  }

  .testimonial-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
  }

  .testimonial blockquote {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  /* Team Section */
  .team {
    padding: 60px 20px;
  }

  .team h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

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

  .team-photo {
    width: 120px;
    height: 120px;
  }

  /* Contact Section */
  .contact {
    padding: 60px 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-details h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 1rem;
  }

  /* Footer */
  .footer-main {
    padding: 40px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal {
    padding: 20px;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .cookie-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Privacy policy responsive fixes */
  .privacy-content {
    padding: 30px 20px;
  }

  .privacy-section a {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

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

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

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

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