:root {
  --primary-yellow: #ffd700;
  --primary-dark: #1a1a1a;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  --border-radius: 12px;
}

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

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

.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.hero-section {
  background: var(--gradient-2);
  color: var(--white);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  color: var(--primary-dark);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.content-section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.info-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.info-block h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.info-block h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-block p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.info-block ul {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.info-block ul li {
  margin-bottom: 0.5rem;
}

.rounded {
  border-radius: var(--border-radius);
}

.product-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.disclaimer-text {
  background: #fff3cd;
  border-left: 4px solid var(--primary-yellow);
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-section {
  background: var(--gradient-1);
  color: var(--primary-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header {
  background: var(--gradient-2);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.approach-card,
.feature-box {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.approach-card h4,
.feature-box h5 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.quality-list {
  list-style: none;
  padding-left: 0;
}

.quality-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-yellow);
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-item {
  padding: 1rem;
}

.contact-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  padding: 12px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.thank-you-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.policy-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.policy-content p,
.policy-content ul {
  color: var(--text-light);
}

.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.site-footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

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

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

.footer-links a:hover {
  color: var(--primary-yellow);
}

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

.footer-bottom p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner-content {
  padding: 2rem 0;
}

.cookie-banner h5 {
  margin-bottom: 0.5rem;
}

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

.cookie-banner a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  display: none;
}

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

.cookie-settings h4 {
  margin-bottom: 1rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-right: 10px;
  margin-bottom: 0.5rem;
}

.cookie-description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 25px;
}

.cookie-settings-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .content-section {
    padding: 40px 0;
  }

  .info-block h2 {
    font-size: 1.5rem;
  }

  .cookie-banner-content .row {
    flex-direction: column;
  }

  .cookie-banner-content .text-right {
    text-align: left;
    margin-top: 1rem;
  }
}
