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

:root {
  --bg-light: #f8f8f6;
  --text-dark: #3a3a38;
  --accent-teal: #5a9fa5;
  --accent-sand: #c9a86a;
  --border-light: #e8e8e6;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

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

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-teal);
}

.btn-catalog {
  border: 1px solid var(--accent-teal);
  background-color: transparent;
  color: var(--accent-teal);
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-catalog:hover {
  background-color: rgba(90, 159, 165, 0.05);
  transform: scale(1.02);
}

footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0;
  margin-top: 4rem;
}

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

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
  min-height: 350px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
}

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

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.badge {
  background-color: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--accent-sand);
  padding: 1rem;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: rgba(201, 168, 106, 0.15);
}

.badge h4 {
  color: var(--accent-sand);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.badge p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.comparison-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background-color: var(--white);
}

.comparison-table thead {
  background-color: rgba(90, 159, 165, 0.05);
}

.comparison-table th {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody tr:hover {
  background-color: rgba(90, 159, 165, 0.03);
}

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

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  overflow: hidden;
}

.product-image:hover img {
  transform: scale(1.02);
}

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

.product-content {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.spec-badge {
  background-color: rgba(201, 168, 106, 0.1);
  color: var(--accent-sand);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-teal);
}

.btn-product {
  background-color: transparent;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  padding: 0.5rem 1rem;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-product:hover {
  background-color: rgba(90, 159, 165, 0.05);
  transform: scale(1.02);
}

.faq {
  margin: 2rem 0;
}

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

.faq-item {
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
}

.faq-item h4 {
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

input[type="checkbox"] {
  margin-top: 0.3rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-submit {
  background-color: var(--accent-teal);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #4a8a8f;
  transform: scale(1.02);
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-message h2 {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.legal-content {
  padding: 2rem 0;
}

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

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

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

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

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

.btn-cookie-accept:hover {
  background-color: #4a8a8f;
}

.btn-cookie-decline {
  background-color: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.btn-cookie-decline:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 250px;
  }

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

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

  .badges-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

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

  .product-image {
    height: 150px;
  }

  .product-content {
    padding: 1rem;
  }

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

  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .btn-cookie {
    width: 100%;
  }
}

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

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

  nav {
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 2rem 0;
  }

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

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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