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

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

html,
body {
  height: 100%;
}

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

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

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

.navbar-section {
  background-color: var(--neutral-dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.brand-logo {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  line-height: 32px;
  text-align: center;
  font-weight: 800;
  margin-right: 8px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--light-blue) !important;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
  flex: 1;
}

.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

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

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

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

.btn-light:hover {
  background-color: var(--neutral-light);
  color: var(--dark-blue);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 40px;
  text-align: center;
}

.benefits {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

.benefit-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.featured-products {
  padding: 80px 0;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--light-blue);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  padding: 20px 20px 10px;
  margin: 0;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0 20px 20px;
  flex-grow: 1;
}

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

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header .lead {
  font-size: 1.1rem;
  opacity: 0.95;
}

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

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
  border-bottom: none;
}

.contact-info {
  background-color: var(--light-blue);
  padding: 30px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-info a {
  color: var(--primary-blue);
  font-weight: 600;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.product-card-full {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card-full:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.product-card-full .product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background-color: var(--light-blue);
}

.product-card-full h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-dark);
  padding: 25px 25px 10px;
  margin: 0;
}

.product-description {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 10px 25px;
  line-height: 1.6;
}

.product-features {
  padding: 15px 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-badge {
  display: inline-block;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-card-full .btn {
  margin: 0 25px 25px;
  align-self: flex-start;
}

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

.contact-form {
  background-color: var(--light-blue);
  padding: 40px;
  border-radius: 8px;
}

.contact-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form .form-control {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 10px 15px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  background-color: var(--white);
  border-color: var(--primary-blue);
  color: var(--text-dark);
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.15);
}

.contact-form .form-check-label {
  color: var(--text-dark);
}

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

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.thank-you-content .lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.thank-you-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.next-steps {
  background-color: var(--light-blue);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  padding: 10px 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.next-steps li:last-child {
  border-bottom: none;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.policy-text {
  max-width: 800px;
  margin: 0 auto;
}

.policy-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.policy-text li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.footer-section a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

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

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.cookie-banner .btn-sm {
  padding: 6px 16px;
  font-size: 0.85rem;
}

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

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

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .product-card-full {
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 25px;
  }

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

  .page-header .lead {
    font-size: 1rem;
  }

  .thank-you-content h1 {
    font-size: 1.8rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-content .row {
    flex-direction: column-reverse;
  }

  .row > div:nth-child(1) {
    margin-top: 30px;
  }
}

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

  .hero-title {
    font-size: 1.5rem;
  }

  .benefits {
    padding: 40px 0;
  }

  .featured-products {
    padding: 40px 0;
  }

  .policy-text {
    padding: 0 15px;
  }

  .footer-content {
    margin-bottom: 30px;
  }

  .policy-text h2 {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
