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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f9f9f8;
  color: #2d3436;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

a {
  color: #003d5c;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #005f8f;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e3;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003d5c;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e6e6e3;
  list-style: none;
  width: 100%;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  border-bottom: 1px solid #e6e6e3;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #2d3436;
}

.nav-menu a:hover {
  background-color: #f5f5f3;
  color: #003d5c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #2d3436;
  margin: 4px 0;
  transition: 0.3s;
}

.cta-header {
  padding: 0.5rem 1rem;
  background-color: #003d5c;
  color: #ffffff;
  border: 1px solid #003d5c;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-header:hover {
  transform: scale(1.02);
  background-color: #005f8f;
  border-color: #005f8f;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background-color: transparent;
    border-top: none;
    width: auto;
  }

  .nav-menu li {
    border-bottom: none;
    margin-right: 2rem;
  }

  .nav-menu a {
    padding: 0;
  }

  .navbar {
    padding: 0 3rem;
  }
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 52, 54, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

section {
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #b0b0a8;
  background-color: transparent;
  color: #2d3436;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
}

.btn:hover {
  border-color: #003d5c;
  color: #003d5c;
  transform: scale(1.02);
}

.btn-primary {
  background-color: #003d5c;
  color: #ffffff;
  border-color: #003d5c;
}

.btn-primary:hover {
  background-color: #005f8f;
  border-color: #005f8f;
  color: #ffffff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .comparison-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .comparison-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.comparison-card {
  border: 1px solid #e6e6e3;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.comparison-card:hover {
  border-color: #b0b0a8;
  background-color: #fafaf9;
}

.comparison-card h3 {
  color: #003d5c;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.comparison-card p {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  background-color: #ffffff;
  border: 1px solid #e6e6e3;
  padding: 1.5rem;
  text-align: center;
  border-radius: 2px;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #003d5c;
  margin-bottom: 0.5rem;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border: 1px solid #e6e6e3;
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.product-card:hover {
  border-color: #b0b0a8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #f5f5f3;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3436;
}

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

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

.product-card .btn {
  width: 100%;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .format-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.format-card {
  border: 1px solid #e6e6e3;
  padding: 1.5rem;
  background-color: #ffffff;
  text-align: center;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.format-card:hover {
  border-color: #003d5c;
  background-color: #fafaf9;
}

.format-card h4 {
  color: #003d5c;
  margin-bottom: 0.5rem;
}

.format-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  border: 1px solid #e6e6e3;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 2px;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2d3436;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.image-with-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .image-with-text {
    grid-template-columns: 1fr 1fr;
  }
}

.image-with-text img {
  width: 100%;
  border: 1px solid #e6e6e3;
  border-radius: 2px;
  max-height: 350px;
  object-fit: cover;
}

.image-with-text.image-left {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .image-with-text.image-left {
    grid-template-columns: 1fr 1.2fr;
  }
}

.image-with-text.image-right {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .image-with-text.image-right {
    grid-template-columns: 1.2fr 1fr;
  }
}

.text-content {
  padding: 1rem;
}

footer {
  background-color: #ffffff;
  border-top: 1px solid #e6e6e3;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #2d3436;
}

.footer-section p, .footer-section a {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

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

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #003d5c;
}

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

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

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

.checkbox-group label {
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  padding: 0.75rem;
  background-color: #003d5c;
  color: #ffffff;
  border: 1px solid #003d5c;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.form-submit:hover {
  background-color: #005f8f;
  border-color: #005f8f;
  transform: scale(1.02);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e6e6e3;
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none;
}

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

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

@media (max-width: 768px) {
  .cookie-content {
    grid-template-columns: 1fr;
  }
}

.cookie-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: #003d5c;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: 1px solid #b0b0a8;
  background-color: transparent;
  color: #2d3436;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-radius: 2px;
  font-weight: 500;
}

.cookie-buttons button:hover {
  border-color: #003d5c;
  color: #003d5c;
}

.cookie-buttons button.btn-primary {
  background-color: #003d5c;
  color: #ffffff;
  border-color: #003d5c;
}

.cookie-buttons button.btn-primary:hover {
  background-color: #005f8f;
  border-color: #005f8f;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.highlight {
  color: #003d5c;
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.list-unstyled {
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: #666;
}

.list-unstyled li::before {
  content: '—';
  margin-right: 0.5rem;
  color: #b0b0a8;
}

.border-top {
  border-top: 1px solid #e6e6e3;
  padding-top: 2rem;
  margin-top: 2rem;
}

.bg-light {
  background-color: #f5f5f3;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

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

.text-muted {
  color: #999;
}

.view-toggle {
  text-align: center;
  margin-bottom: 2rem;
}

.view-toggle p {
  color: #666;
  font-size: 0.95rem;
}

.view-toggle .btn {
  margin: 0 0.5rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.guide-item {
  background-color: #ffffff;
  border: 1px solid #e6e6e3;
  padding: 1.5rem;
  text-align: center;
  border-radius: 2px;
}

.guide-item h4 {
  margin-bottom: 0.5rem;
}

.guide-item p {
  color: #666;
  font-size: 0.9rem;
}
