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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f7f5;
  color: #3a3a3a;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #2b2b2b;
  font-weight: 600;
  margin: 1.2rem 0 0.8rem 0;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e1dc;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d87d3a;
  text-decoration: none;
  display: block;
}

.logo:hover {
  text-decoration: none;
  color: #c26a2a;
}

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

nav a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d87d3a;
}

.btn-catalog {
  background-color: #f8f7f5;
  color: #d87d3a;
  border: 1px solid #d87d3a;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

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

.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('') center/cover;
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  text-align: left;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e1dc;
}

section:last-child {
  border-bottom: none;
}

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

.card {
  background-color: #ffffff;
  border: 1px solid #e5e1dc;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge {
  background-color: #f0ece6;
  color: #d87d3a;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #d87d3a;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d87d3a;
  margin-bottom: 1rem;
}

.btn-secondary {
  background-color: #ffffff;
  color: #d87d3a;
  border: 1px solid #d87d3a;
  padding: 0.7rem 1.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
}

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

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

.content-block {
  background-color: #f5f2ed;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid #d87d3a;
}

.content-block h3 {
  color: #2b2b2b;
  margin-top: 0;
}

.content-block p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
}

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

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e1dc;
  padding: 1.5rem;
  border-radius: 4px;
}

.faq-question {
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.faq-answer {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e1dc;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

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

.footer-column h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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

.footer-column a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #d87d3a;
}

.footer-bottom {
  border-top: 1px solid #e5e1dc;
  padding-top: 1.5rem;
  text-align: center;
  color: #999999;
  font-size: 0.85rem;
}

.filters {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: #3a3a3a;
  font-size: 0.95rem;
}

select {
  padding: 0.6rem 1rem;
  border: 1px solid #d87d3a;
  background-color: #ffffff;
  color: #3a3a3a;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
}

select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 125, 58, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #3a3a3a;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e5e1dc;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d87d3a;
  box-shadow: 0 0 0 3px rgba(216, 125, 58, 0.1);
}

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

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

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

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

.btn-primary {
  background-color: #d87d3a;
  color: #ffffff;
  border: 1px solid #d87d3a;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #c26a2a;
  border-color: #c26a2a;
  transform: scale(1.02);
}

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

.intro-text {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.comparison-guide {
  background-color: #f5f2ed;
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.comparison-guide h3 {
  margin-top: 0;
}

.comparison-guide ul {
  list-style: none;
  padding: 0;
}

.comparison-guide li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #e5e1dc;
  color: #555555;
}

.comparison-guide li:last-child {
  border-bottom: none;
}

.comparison-guide li:before {
  content: "→ ";
  color: #d87d3a;
  font-weight: 600;
  margin-right: 0.5rem;
}

.legal-section {
  background-color: #ffffff;
  border: 1px solid #e5e1dc;
  padding: 2rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.legal-section h3 {
  margin-top: 0;
}

.legal-section p {
  line-height: 1.8;
  color: #555555;
}

.legal-section ul {
  list-style: none;
  padding: 0 0 0 1.5rem;
}

.legal-section li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1rem;
}

.legal-section li:before {
  content: "•";
  color: #d87d3a;
  position: absolute;
  left: 0;
}

.thank-you-content {
  text-align: center;
  padding: 3rem 1rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-content h1 {
  color: #d87d3a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e1dc;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

#consent-banner.show {
  display: block;
}

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

.consent-text {
  flex: 1;
  font-size: 0.9rem;
  color: #555555;
  min-width: 250px;
}

.consent-text p {
  margin: 0 0 0.5rem 0;
}

.consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.consent-buttons button {
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #d87d3a;
  transition: all 0.3s ease;
}

.consent-buttons .accept {
  background-color: #d87d3a;
  color: #ffffff;
}

.consent-buttons .accept:hover {
  background-color: #c26a2a;
  transform: scale(1.02);
}

.consent-buttons .reject {
  background-color: #ffffff;
  color: #d87d3a;
}

.consent-buttons .reject:hover {
  background-color: #f5f2ed;
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  .hero {
    padding: 4rem 1rem;
  }

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

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

  .consent-content {
    flex-direction: column;
    gap: 1rem;
  }

  .consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

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

  select {
    width: 100%;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 2.5rem 1rem;
    min-height: 300px;
  }

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

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    display: block;
    text-align: center;
  }

  .cards-grid {
    gap: 1rem;
  }

  .card-image {
    height: 200px;
  }

  main {
    padding: 1rem;
  }

  section {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
  }
}
