:root {
  --color-light: #fbfdff;
  --color-lighter: #eef6ff;
  --color-dark: #0b1b2b;
  --color-teal: #4dd6c1;
  --color-purple: #a78bfa;
  --color-golden: #f2d6a2;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

header {
  background: linear-gradient(135deg, rgba(251, 253, 255, 0.95) 0%, rgba(238, 246, 255, 0.95) 100%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(77, 214, 193, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--color-teal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

footer {
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.5) 0%, rgba(251, 253, 255, 0.8) 100%);
  border-top: 1px solid rgba(77, 214, 193, 0.1);
  padding: 60px 0 40px;
  margin-top: 80px;
}

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

.footer-section h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  font-size: 14px;
  color: var(--color-dark);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-teal);
  opacity: 1;
}

.footer-info {
  font-size: 13px;
  color: var(--color-dark);
  opacity: 0.6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(77, 214, 193, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--color-dark);
  opacity: 0.5;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(77, 214, 193, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
  padding: 60px 20px;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--color-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-teal);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-image {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 500px;
  height: 500px;
  opacity: 0.3;
  object-fit: cover;
  border-radius: 50%;
  filter: blur(20px);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid var(--color-teal);
  background: rgba(77, 214, 193, 0.1);
  color: var(--color-teal);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 8px;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--color-teal);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 214, 193, 0.2);
}

.btn-secondary {
  border-color: var(--color-purple);
  color: var(--color-purple);
  background: rgba(167, 139, 250, 0.1);
}

.btn-secondary:hover {
  background: var(--color-purple);
  color: var(--color-light);
  box-shadow: 0 10px 30px rgba(167, 139, 250, 0.2);
}

.section {
  padding: 80px 20px;
}

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

.section-subtitle {
  font-size: 1rem;
  color: var(--color-teal);
  margin-bottom: 50px;
  font-weight: 300;
}

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

.card {
  background: linear-gradient(135deg, rgba(251, 253, 255, 0.9) 0%, rgba(238, 246, 255, 0.9) 100%);
  border: 1px solid rgba(77, 214, 193, 0.2);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 214, 193, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 214, 193, 0.4);
  box-shadow: 0 20px 50px rgba(77, 214, 193, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--color-dark);
  opacity: 0.8;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(77, 214, 193, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(77, 214, 193, 0.3) 0%, rgba(167, 139, 250, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(251, 253, 255, 0.8) 0%, rgba(238, 246, 255, 0.8) 100%);
  border-left: 4px solid var(--color-teal);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: linear-gradient(135deg, rgba(77, 214, 193, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
  border-left-color: var(--color-purple);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-dark);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
  border-color: var(--color-purple);
}

.faq-answer {
  display: none;
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.text-large {
  font-size: 1.1rem;
  line-height: 1.8;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.opacity-7 {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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

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

  nav ul {
    gap: 15px;
    font-size: 12px;
  }

  .hero {
    min-height: 400px;
  }

  .hero-image {
    width: 300px;
    height: 300px;
    right: -100px;
    top: 0;
  }

  .section {
    padding: 50px 20px;
  }

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(11, 27, 43, 0.95) 0%, rgba(11, 27, 43, 0.98) 100%);
  border-top: 2px solid rgba(77, 214, 193, 0.3);
  padding: 20px;
  z-index: 2000;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  color: var(--color-light);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: var(--color-teal);
  color: var(--color-dark);
}

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

.cookie-btn-reject {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.cookie-btn-reject:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

main {
  min-height: 60vh;
}

h2 {
  font-weight: 400;
  letter-spacing: -0.5px;
}

h3 {
  font-weight: 400;
  letter-spacing: -0.3px;
}
