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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: #003d99;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #002266;
}

button, .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #0d8a2e;
  color: white;
}

.btn-primary:hover {
  background-color: #0a6b24;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ff8c42;
  color: white;
}

.btn-secondary:hover {
  background-color: #e67e35;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: #003d99;
  border: 2px solid #003d99;
}

.btn-ghost:hover {
  background-color: #f0f4f8;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003d99;
}

.logo a {
  color: #003d99;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #003d99;
}

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

section {
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: #003d99;
}

.hero-text p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: 400px;
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-banner {
  background-color: #f0f4f8;
  padding: 2rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.banner-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-item {
  text-align: center;
}

.banner-item h3 {
  color: #003d99;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.banner-item p {
  color: #666;
  font-size: 0.95rem;
}

.badge-section {
  background-color: #ffffff;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.badge-item {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid #003d99;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 61, 153, 0.1);
}

.badge-item h4 {
  color: #003d99;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.badge-item p {
  color: #666;
  font-size: 0.95rem;
}

.inventory-section {
  background-color: #ffffff;
}

.inventory-module {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.inventory-table thead {
  background-color: #003d99;
  color: white;
}

.inventory-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.inventory-table td {
  padding: 1rem;
  border-bottom: 1px solid #e8e8e8;
  color: #4a4a4a;
}

.inventory-table tbody tr:hover {
  background-color: #f9f9f9;
}

.inventory-info {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.product-image {
  width: 100%;
  height: 240px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  color: #003d99;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  min-height: 60px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.product-meta span {
  display: flex;
  align-items: center;
}

.product-meta strong {
  color: #003d99;
  margin-right: 0.25rem;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #f0f4f8;
  color: #003d99;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #d0e0f0;
}

.badge.category {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

.product-price {
  font-size: 1.5rem;
  color: #0d8a2e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-cta {
  width: 100%;
}

.photo-bg-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 0;
}

.photo-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.photo-bg-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
  text-align: center;
}

.photo-bg-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.photo-bg-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.comparison-table thead {
  background-color: #f0f4f8;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #003d99;
  border-bottom: 2px solid #d0e0f0;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e8e8e8;
  color: #4a4a4a;
}

.comparison-table tbody tr:hover {
  background-color: #f9f9f9;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 2rem 1rem 1rem 1rem;
  font-weight: 500;
}

.qa-section {
  background-color: #f5f5f5;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.qa-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff8c42;
}

.qa-card h4 {
  color: #003d99;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.qa-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.summary-section {
  background-color: #ffffff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c2c2c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #003d99;
  box-shadow: 0 0 0 3px rgba(0, 61, 153, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.checkbox-group a {
  color: #003d99;
}

footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 3rem 0 1rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #ccc;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 2rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 300px;
  }

  .banner-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .product-card {
    border-radius: 8px;
  }

  .mini-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

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

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  section {
    padding: 1.5rem 0;
  }

  .hero {
    padding: 2rem 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .badge-grid {
    grid-template-columns: 1fr;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar-container {
    flex-direction: column;
    gap: 1rem;
  }

  table {
    font-size: 0.85rem;
  }

  .inventory-table th,
  .inventory-table td {
    padding: 0.75rem 0.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
  min-width: 250px;
}

.cookie-text a {
  color: #ffb3ba;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #0d8a2e;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #0a6b24;
}

.cookie-btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.thank-you-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thank-you-container h1 {
  color: #0d8a2e;
  margin-bottom: 1rem;
}

.thank-you-container p {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
  color: #4a4a4a;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #003d99;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.legal-content ol, .legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #003d99;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}
