* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}
body {
  background: #FDFBF7;
  color: #8B4513;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Annie Use Your Telescope', cursive;
}
button, .cta {
  background: linear-gradient(45deg, #F4C430, #FF6F3C);
  border: none;
  padding: clamp(12px, 3vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 50px;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
button:hover, .cta:hover {
  transform: scale(1.15) rotate(2deg);
  box-shadow: 0 0 15px rgba(255, 111, 60, 0.7);
}
section {
  padding: clamp(40px, 8vw, 80px) clamp(10px, 3vw, 20px);
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.9);
  color: #FDFBF7;
  padding: clamp(10px, 2vw, 15px) 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 3vw, 20px);
}
.header-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
}
.nav-links a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #FF6F3C;
}
.burger-menu {
  display: none;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 69, 19, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu a {
  color: #F4C430;
  text-decoration: none;
  font-family: 'Amatic SC', cursive;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.mobile-menu a:hover {
  color: #FF6F3C;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F4C430;
}

/* Banner Section */
.banner {
  background: #A8D5BA;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.banner h1 {
  margin-top: 50px;
  font-size: clamp(2rem, 5vw, 3rem);
}
.banner p {
  margin: clamp(15px, 2vw, 20px) 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.banner .cta {
  margin-top: clamp(15px, 2vw, 20px);
}

/* Data Collection, Data Usage, Data Protection, Use of Service, Purchases, Intellectual Property */
.data-collection, .data-usage, .data-protection, .use-service, .purchases, .intellectual-property {
  background: #FDFBF7;
  text-align: center;
}
.data-collection ul, .data-usage ul, .data-protection ul, .use-service ul, .purchases ul, .intellectual-property ul {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: clamp(20px, 3vw, 30px) auto;
}
.data-collection li, .data-usage li, .data-protection li, .use-service li, .purchases li, .intellectual-property li {
  margin: 10px 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.data-collection li strong, .data-usage li strong, .data-protection li strong, .use-service li strong, .purchases li strong, .intellectual-property li strong {
  color: #FF6F3C;
}

/* Contact Section */
.contact {
  background: #F5E8C7;
  text-align: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin: clamp(20px, 3vw, 30px) 0;
}
.contact-info p {
  margin: 10px 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.contact-social a {
  color: #F4C430;
  margin: 0 clamp(10px, 2vw, 15px);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  transition: transform 0.3s ease;
}
.contact-social a:hover {
  transform: rotate(20deg);
}

/* Thanks Section */
.thanks {
  background: #A8D5BA;
  text-align: center;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.thanks-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  margin: clamp(20px, 3vw, 30px) 0;
  transform: rotate(-2deg);
}
.thanks-social {
  margin: clamp(20px, 3vw, 30px) 0;
}
.thanks-social p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 10px;
}
.social-icons a {
  color: #F4C430;
  margin: 0 clamp(10px, 2vw, 15px);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: rotate(20deg) scale(1.3);
}

/* Wave Background Animation */
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none" stroke="%23A8D5BA" stroke-width="1"><path d="M0 10 Q25 0 50 10 T100 10" /></svg>') repeat-x;
  opacity: 0.3;
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .banner, .contact, .thanks {
    clip-path: none;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .banner-image img, .thanks-image img {
    max-width: 500px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner-image img, .thanks-image img {
    max-width: 550px;
  }
}