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

:root {
  --primary-blue: #0052cc;
  --dark-blue: #003399;
  --light-blue: #e8f0ff;
  --white: #ffffff;
  --dark-gray: #1a1a1a;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

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);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 600;
}

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.brand-logo {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.15);
  border-color: var(--primary-blue);
}

.category-card h3 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.category-card-large {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.category-card-large:hover {
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.15);
  border-color: var(--primary-blue);
}

.category-card-large h3 {
  color: var(--dark-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.15);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h5 {
  color: var(--dark-blue);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.feature-box {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: var(--light-blue);
}

.feature-box h4 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

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

.contact-info {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info h5 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.form-check-input {
  border: 1px solid var(--border-color);
  cursor: pointer;
}

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

.thank-you-box {
  background: var(--light-blue);
  padding: 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

.thank-you-box h1 {
  color: var(--dark-blue);
}

.bg-dark {
  background-color: var(--dark-gray) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-50:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner.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 .btn {
  white-space: nowrap;
}

.cookie-content a {
  color: var(--light-blue);
}

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

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

  .page-header h1 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

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

  .cookie-content p {
    min-width: auto;
  }
}

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

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

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  .thank-you-box {
    padding: 1.5rem;
  }
}
