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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f7fb;
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #475569;
}

a {
  color: #6b5b95;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a4a7f;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  sticky: top;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6b5b95;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #6b5b95;
  background-color: #f5f7fb;
  color: #6b5b95;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: #6b5b95;
  color: #ffffff;
  transform: scale(1.02);
}

.btn-primary {
  background-color: #6b5b95;
  color: #ffffff;
  border-color: #6b5b95;
}

.btn-primary:hover {
  background-color: #5a4a7f;
  border-color: #5a4a7f;
}

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

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url();
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.quick-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-nav a {
  color: #ffffff;
  background-color: rgba(107, 91, 149, 0.9);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-nav a:hover {
  background-color: #6b5b95;
  transform: scale(1.05);
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #64748b;
  font-size: 1.1rem;
}

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

.price-block {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #6b5b95;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.price-block h3 {
  color: #6b5b95;
  margin-bottom: 0.5rem;
}

.price-badge {
  background-color: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-block p {
  margin-bottom: 1.5rem;
  color: #64748b;
}

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

.package-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.package-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.package-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #f0f0f0;
}

.product-content {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.product-description {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b5b95;
  margin-bottom: 1.25rem;
}

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

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

.rule-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rule-item h4 {
  color: #6b5b95;
  margin-bottom: 0.5rem;
}

.rule-item p {
  font-size: 0.95rem;
  color: #64748b;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: #6b5b95;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #64748b;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-bar .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b5b95;
  box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
}

footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

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

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

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

.footer-section a {
  color: #cbd5e1;
}

.footer-section a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.thank-you-box {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thank-you-box h1 {
  color: #6b5b95;
  margin-bottom: 1rem;
}

.thank-you-box p {
  margin-bottom: 2rem;
  color: #64748b;
}

.disclaimer-content,
.legal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.info-block {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
  color: #6b5b95;
  margin-bottom: 1rem;
}

.info-block p {
  margin-bottom: 0.5rem;
  color: #64748b;
}

.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.set-ideas {
  background-color: #f0f4f8;
  padding: 2rem;
  border-radius: 6px;
  margin-top: 3rem;
}

.set-ideas h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.idea-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #fbbf24;
}

.idea-card h4 {
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.idea-card p {
  font-size: 0.95rem;
  color: #64748b;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

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

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

  .quick-nav {
    flex-direction: column;
  }

  .quick-nav a {
    width: 100%;
  }

  .price-levels,
  .packages,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-bar .btn {
    min-width: auto;
  }

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

  section {
    padding: 2rem 0;
  }

  header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .logo {
    flex: 1;
  }

  nav {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 1rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  margin-bottom: 0;
}

.hidden {
  display: none;
}
