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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fbfdff;
  color: #0b1b2b;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: #4dd6c1;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #a78bfa;
}

header {
  background-color: #fbfdff;
  border-bottom: 1px solid #eef6ff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0b1b2b;
}

.logo a {
  color: #0b1b2b;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: #0b1b2b;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4dd6c1;
  transition: width 0.3s ease;
}

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

footer {
  background-color: #0b1b2b;
  color: #eef6ff;
  padding: 3rem 1rem;
  margin-top: 5rem;
}

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

.footer-section h3 {
  color: #4dd6c1;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #eef6ff;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #4dd6c1;
}

.footer-contact {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #eef6ff;
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #a78bfa;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 600px;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 27, 43, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0b1b2b;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4dd6c1;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-description {
  color: #0b1b2b;
  font-size: 1rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: #4dd6c1;
  color: #fbfdff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-align: center;
  width: fit-content;
}

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

.btn-secondary {
  background-color: transparent;
  color: #4dd6c1;
  border: 2px solid #4dd6c1;
}

.btn-secondary:hover {
  background-color: #4dd6c1;
  color: #fbfdff;
}

.section {
  padding: 4rem 1rem;
  display: grid;
  gap: 2rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0b1b2b;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4dd6c1;
  font-weight: 500;
  margin-bottom: 2rem;
}

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

.card {
  background-color: #eef6ff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #4dd6c1;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(77, 214, 193, 0.15);
}

.card h3 {
  font-size: 1.25rem;
  color: #0b1b2b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  color: #0b1b2b;
  line-height: 1.8;
  font-size: 0.95rem;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-block h2 {
  font-size: 2rem;
  color: #0b1b2b;
  font-weight: 600;
  line-height: 1.3;
}

.content-block h3 {
  font-size: 1.3rem;
  color: #4dd6c1;
  font-weight: 600;
  margin-top: 1.5rem;
}

.list-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.list-marker {
  color: #4dd6c1;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-section {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background-color: #eef6ff;
  padding: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid #4dd6c1;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(77, 214, 193, 0.1);
}

.faq-question {
  font-weight: 600;
  color: #0b1b2b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: #0b1b2b;
  margin-top: 1rem;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.toggle-icon {
  color: #4dd6c1;
  font-weight: bold;
  font-size: 1.2rem;
}

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

.mosaic-item {
  background-color: #eef6ff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #a78bfa;
}

.mosaic-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(167, 139, 250, 0.15);
}

.mosaic-item h4 {
  color: #0b1b2b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mosaic-item p {
  color: #0b1b2b;
  font-size: 0.9rem;
}

.offset-grid {
  display: grid;
  gap: 2rem;
}

.offset-item {
  background-color: #eef6ff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #4dd6c1;
}

.offset-item h3 {
  color: #0b1b2b;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.offset-item p {
  color: #0b1b2b;
  line-height: 1.8;
}

.floating-panel {
  background-color: #fbfdff;
  border: 2px solid #4dd6c1;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
  margin: 2rem 0;
}

.floating-panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background-color: #4dd6c1;
  border-radius: 50%;
  opacity: 0.3;
}

.legal-content {
  color: #0b1b2b;
  line-height: 1.9;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: #0b1b2b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: #4dd6c1;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    min-height: auto;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

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

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

  .section {
    padding: 2rem 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

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

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

  .btn {
    width: 100%;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0b1b2b;
  color: #eef6ff;
  padding: 1.5rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-consent.active {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.cookie-accept {
  background-color: #4dd6c1;
  color: #fbfdff;
}

.cookie-accept:hover {
  background-color: #a78bfa;
}

.cookie-decline {
  background-color: transparent;
  color: #4dd6c1;
  border: 2px solid #4dd6c1;
}

.cookie-decline:hover {
  background-color: #4dd6c1;
  color: #fbfdff;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-buttons button {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.5px;
}
