:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #3385d6;
  --secondary-color: #f8f9fa;
  --text-color: #212529;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

* {
  box-sizing: border-box;
}

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

.main-header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-item.active .nav-link {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.features-section {
  background: var(--white);
}

.feature-box {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

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

.feature-box p {
  color: var(--text-light);
}

.product-card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  height: 250px;
  object-fit: cover;
}

.product-card .card-title {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.product-features li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
  color: var(--text-color);
  font-weight: 700;
}

.page-header .lead {
  color: var(--text-light);
}

.main-footer {
  background: #212529;
  color: #ffffff;
}

.main-footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.main-footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: #ffffff;
}

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

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

.main-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-info-card,
.business-hours {
  border-radius: 8px;
}

.contact-info-section {
  background: var(--light-bg);
}

.value-box {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
}

.value-box h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-info-box {
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.product-info-box h3 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.thank-you-content {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.policy-document {
  max-width: 900px;
  margin: 0 auto;
}

.policy-document h2 {
  color: var(--text-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

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

.policy-document ul {
  margin-bottom: 1rem;
}

.policy-document li {
  margin-bottom: 0.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #212529;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

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

  .product-card img {
    height: 200px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .feature-box {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

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

.text-primary {
  color: var(--primary-color);
}
