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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #1a1a1a;
  color: #f5f1e8;
  line-height: 1.6;
}

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

a:hover {
  color: #e8c4a0;
}

button, .btn {
  border: 1px solid #d4a574;
  background-color: transparent;
  color: #f5f1e8;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

button:hover, .btn:hover {
  transform: scale(1.02);
  background-color: rgba(212, 165, 116, 0.1);
  border-color: #e8c4a0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #e0dcd3;
}

header {
  background-color: #0f0f0f;
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #d4a574;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: #f5f1e8;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d4a574;
}

.cta-button {
  border: 1px solid #d4a574;
  color: #f5f1e8;
  padding: 10px 20px;
  font-size: 13px;
}

footer {
  background-color: #0f0f0f;
  border-top: 1px solid #2a2a2a;
  padding: 40px 0;
  margin-top: 80px;
}

footer p, footer a {
  font-size: 14px;
  color: #a89968;
}

footer a:hover {
  color: #d4a574;
}

.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f5f1e8;
  max-width: 600px;
  padding: 0 40px;
}

.hero-content h1 {
  color: #f5f1e8;
  margin-bottom: 16px;
}

.hero-content p {
  color: #d4a574;
  font-size: 18px;
  margin-bottom: 24px;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: #a89968;
  font-size: 16px;
}

.card {
  background-color: #242424;
  border: 1px solid #3a3a3a;
  padding: 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #d4a574;
  background-color: #2a2a2a;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: #242424;
  border: 1px solid #3a3a3a;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #d4a574;
  transform: translateY(-4px);
}

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

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f5f1e8;
}

.product-description {
  font-size: 13px;
  color: #a89968;
  margin-bottom: 12px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #d4a574;
  margin-bottom: 16px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

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

.feature-box {
  background-color: #242424;
  border: 1px solid #3a3a3a;
  padding: 32px 24px;
  text-align: center;
  border-radius: 2px;
}

.feature-box h3 {
  color: #d4a574;
  margin-bottom: 12px;
}

.feature-box p {
  color: #a89968;
  font-size: 14px;
}

.faq-item {
  background-color: #242424;
  border: 1px solid #3a3a3a;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4a574;
}

.faq-item h4 {
  color: #f5f1e8;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}

.faq-item p {
  color: #a89968;
  font-size: 14px;
  display: none;
}

.faq-item.active p {
  display: block;
}

.accent-green {
  color: #6b8e6b;
}

.badge {
  background-color: rgba(107, 142, 107, 0.2);
  color: #6b8e6b;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid #6b8e6b;
}

.control-panel {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.control-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.control-item label {
  color: #a89968;
  font-size: 14px;
  font-weight: 500;
}

.control-item select {
  background-color: #242424;
  color: #f5f1e8;
  border: 1px solid #3a3a3a;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}

form {
  background-color: #242424;
  border: 1px solid #3a3a3a;
  padding: 40px;
  border-radius: 2px;
  max-width: 600px;
  margin: 0 auto;
}

form .form-group {
  margin-bottom: 24px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #f5f1e8;
  font-size: 14px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  background-color: #1a1a1a;
  color: #f5f1e8;
  border: 1px solid #3a3a3a;
  padding: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: #d4a574;
}

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

form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

form input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  accent-color: #d4a574;
}

form .checkbox-group label {
  margin: 0;
  font-size: 13px;
  color: #a89968;
}

form .checkbox-group a {
  color: #d4a574;
}

form button {
  width: 100%;
  background-color: #d4a574;
  color: #1a1a1a;
  border: 1px solid #d4a574;
  font-weight: 600;
  padding: 14px;
}

form button:hover {
  background-color: #e8c4a0;
  border-color: #e8c4a0;
}

.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: #a89968;
}

.breadcrumb a {
  color: #d4a574;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.thank-you-content {
  text-align: center;
  padding: 60px 20px;
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.thank-you-content p {
  color: #a89968;
  margin-bottom: 32px;
  font-size: 16px;
}

.legal-text {
  line-height: 1.8;
  font-size: 14px;
}

.legal-text h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #d4a574;
}

.legal-text ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-text li {
  margin-bottom: 8px;
  color: #a89968;
}

.contact-info {
  background-color: #242424;
  border: 1px solid #3a3a3a;
  padding: 32px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.contact-info h3 {
  color: #d4a574;
  margin-bottom: 16px;
}

.contact-info p {
  color: #a89968;
  margin-bottom: 12px;
}

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

  h2 {
    font-size: 1.8rem;
  }

  nav {
    gap: 16px;
    flex-basis: 100%;
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    height: 350px;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .section {
    padding: 50px 0;
  }

  .control-panel {
    flex-direction: column;
    gap: 12px;
  }

  .control-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .control-item select {
    width: 100%;
  }

  form {
    padding: 30px 20px;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hidden-consent {
  display: none;
}
