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

:root {
  --color-bg: #fbfdff;
  --color-light: #eef6ff;
  --color-dark: #0b1b2b;
  --accent-teal: #4dd6c1;
  --accent-purple: #a78bfa;
  --accent-gold: #f2d6a2;
  --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-light) 100%);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-purple);
  text-decoration: underline;
}

.container-fluid {
  padding: 0;
}

.navbar {
  background: rgba(251, 253, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(77, 214, 193, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--color-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: var(--transition);
}

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

.navbar-nav .nav-link.active {
  color: var(--accent-teal) !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 214, 193, 0.1) 0%, rgba(77, 214, 193, 0) 70%);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, rgba(167, 139, 250, 0) 70%);
  bottom: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
  border-radius: 50%;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(11, 27, 43, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-glass {
  background: rgba(251, 253, 255, 0.9);
  border: 1px solid rgba(77, 214, 193, 0.3);
  color: var(--color-dark);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: inline-block;
  margin: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.btn-glass:hover {
  background: rgba(77, 214, 193, 0.15);
  border-color: rgba(77, 214, 193, 0.5);
  color: var(--accent-teal);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 214, 193, 0.2);
}

.btn-glass.primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
  border: none;
  color: white;
}

.btn-glass.primary:hover {
  background: linear-gradient(135deg, #3ab8a3 0%, #8f6fd4 100%);
  box-shadow: 0 15px 40px rgba(77, 214, 193, 0.3);
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(11, 27, 43, 0.6);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.scene-card {
  background: rgba(251, 253, 255, 0.7);
  border: 1px solid rgba(77, 214, 193, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
}

.scene-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
}

.scene-card:hover {
  background: rgba(251, 253, 255, 0.95);
  border-color: rgba(77, 214, 193, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(77, 214, 193, 0.15);
}

.scene-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-teal);
}

.scene-card p {
  color: rgba(11, 27, 43, 0.7);
  line-height: 1.8;
}

.scene-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.scene-image:hover {
  transform: scale(1.02);
}

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

.info-box {
  background: linear-gradient(135deg, rgba(77, 214, 193, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
  border-left: 4px solid var(--accent-teal);
  border-radius: 10px;
  padding: 1.5rem;
  transition: var(--transition);
}

.info-box:hover {
  border-left-color: var(--accent-purple);
  transform: translateX(5px);
}

.info-box h4 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-box p {
  color: rgba(11, 27, 43, 0.7);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 250px;
}

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

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

.faq {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(251, 253, 255, 0.7);
  border: 1px solid rgba(77, 214, 193, 0.2);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-weight: 600;
  color: var(--color-dark);
}

.faq-question:hover {
  background: rgba(77, 214, 193, 0.05);
  color: var(--accent-teal);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

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

.faq-answer.active {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: rgba(11, 27, 43, 0.7);
  line-height: 1.8;
}

footer {
  background: rgba(11, 27, 43, 0.95);
  color: var(--color-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(77, 214, 193, 0.2);
}

footer h4 {
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--color-light);
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent-teal);
  text-decoration: none;
}

footer p {
  color: rgba(238, 246, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(77, 214, 193, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(238, 246, 255, 0.5);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 27, 43, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(77, 214, 193, 0.2);
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.5s ease;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  color: var(--color-light);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(77, 214, 193, 0.3);
  background: transparent;
  color: var(--color-light);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-btn:hover {
  background: rgba(77, 214, 193, 0.2);
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
  border: none;
}

.cookie-btn.accept:hover {
  background: linear-gradient(135deg, #3ab8a3 0%, #8f6fd4 100%);
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.4rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 80vh;
  }

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

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

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .scene-card {
    padding: 1rem;
  }

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

  .btn-glass {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}
