@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', sans-serif;
  background-color: #fafaf8;
  color: #455a64;
  line-height: 1.9;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f3;
}

::-webkit-scrollbar-thumb {
  background: #9575cd;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7c3fa0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

header nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9575cd;
  text-decoration: none;
  transition: color 0.3s ease;
}

header .logo:hover {
  color: #7c3fa0;
}

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

header .nav-links a {
  color: #455a64;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

header .nav-links a:hover {
  color: #9575cd;
}

@media (max-width: 768px) {
  header .nav-links {
    display: none;
  }

  header nav {
    padding: 0 1rem;
  }
}

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

section {
  padding: 120px 2rem;
  max-width: 1620px;
  margin: 0 auto;
}

section h1 {
  font-size: 55px;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #455a64;
  line-height: 1.2;
  background: linear-gradient(135deg, #9575cd, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section h2 {
  font-size: 39px;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #455a64;
  line-height: 1.3;
}

section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem 0;
  color: #455a64;
}

p {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  color: #455a64;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(245, 232, 199, 0.3) 0%, rgba(149, 117, 205, 0.1) 100%);
  overflow: hidden;
  padding: 120px 2rem 2rem 2rem;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

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

.hero h1 {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #455a64;
  opacity: 0.95;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-full {
  width: 100%;
}

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(149, 117, 205, 0.1);
}

@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .two-column.reverse > * {
    direction: ltr;
  }
}

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

.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(149, 117, 205, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(149, 117, 205, 0.15);
  border-color: rgba(149, 117, 205, 0.3);
}

.card h3 {
  color: #9575cd;
  margin-top: 0;
}

.card p {
  margin: 0;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

button, .btn {
  background: linear-gradient(135deg, #9575cd, #7c3fa0);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.45s ease;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

button:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(149, 117, 205, 0.3);
}

button:active, .btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: linear-gradient(135deg, #4fc3f7, #2196f3);
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(149, 117, 205, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
  padding: 80px 2rem;
}

.section-light {
  background: #fafaf8;
}

.section-lavender {
  background: linear-gradient(135deg, #9575cd 0%, #7c3fa0 100%);
  color: white;
  padding: 80px 2rem;
}

.section-lavender h2,
.section-lavender h3 {
  color: white;
}

.section-lavender p {
  color: rgba(255, 255, 255, 0.95);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

table th {
  background: linear-gradient(135deg, #9575cd, #7c3fa0);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(149, 117, 205, 0.1);
  color: #455a64;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background: rgba(149, 117, 205, 0.03);
}

.quote {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: #9575cd;
  margin: 2rem 0;
  padding: 2rem 2rem;
  border-left: 4px solid #9575cd;
  background: rgba(149, 117, 205, 0.05);
  border-radius: 0 12px 12px 0;
}

.disclaimer {
  background: rgba(245, 232, 199, 0.3);
  border: 1px solid #f5e8c7;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  color: #455a64;
}

.disclaimer strong {
  color: #9575cd;
}

footer {
  background: #455a64;
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

footer .footer-content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

footer h4 {
  color: #9575cd;
  margin-top: 0;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #9575cd;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin: 0.5rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  background: rgba(149, 117, 205, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.95);
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

form .form-group {
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #455a64;
}

form input,
form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(149, 117, 205, 0.2);
  border-radius: 12px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1rem;
  color: #455a64;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #9575cd;
  box-shadow: 0 0 0 3px rgba(149, 117, 205, 0.1);
}

form textarea {
  resize: vertical;
  min-height: 150px;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(149, 117, 205, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(149, 117, 205, 0.05);
  font-weight: 700;
  color: #455a64;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(149, 117, 205, 0.1);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem;
  color: #455a64;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  display: block;
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(180deg);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #455a64;
  color: white;
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #9575cd;
  color: white;
}

.cookie-btn.accept:hover {
  background: #7c3fa0;
}

.cookie-btn.reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.reject:hover {
  border-color: white;
}

.cookie-btn.info {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.info:hover {
  border-color: white;
}

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  section {
    padding: 60px 1rem;
  }

  section h1 {
    font-size: 40px;
  }

  section h2 {
    font-size: 28px;
  }

  .hero {
    padding: 100px 1rem 2rem 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 1.1rem;
  }

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

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

@media (max-width: 480px) {
  header .logo {
    font-size: 1.2rem;
  }

  section h1 {
    font-size: 32px;
  }

  section h2 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  button, .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }
}
