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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 58px;
  font-weight: 300;
  letter-spacing: 1.2px;
  color: #0A2342;
  margin-bottom: 40px;
  line-height: 1.2;
}

h2 {
  font-size: 42px;
  font-weight: 400;
  color: #00BFA5;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 28px;
  font-weight: 400;
  color: #0A2342;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  color: #333;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid #E0E0E0;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #0A2342;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #0A2342;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a:hover {
  color: #00BFA5;
}

main {
  margin-top: 80px;
  width: 100%;
}

.section {
  padding: 200px 40px;
  background: #fff;
  border-top: 1px solid #E0E0E0;
}

.section:first-of-type {
  border-top: none;
}

.hero {
  padding: 0;
  margin-top: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  border-top: none;
}

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

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-content img {
  max-width: 100%;
  height: auto;
  margin: 60px 0;
  max-height: 500px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 100px 0;
}

.grid-2 img {
  width: 100%;
  height: auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin: 80px 0;
}

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

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 30px;
  background: #f5f5f5;
}

.product-card h3 {
  margin-bottom: 15px;
}

.product-card p {
  font-size: 16px;
  color: #666;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 60px 0;
  background: #fafafa;
}

th, td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
  font-size: 16px;
}

th {
  background: #0A2342;
  color: #fff;
  font-weight: 600;
}

tr:hover {
  background: #f0f0f0;
}

.cta-button {
  display: inline-block;
  padding: 15px 50px;
  background: transparent;
  color: #00BFA5;
  text-decoration: none;
  border: 1px solid #00BFA5;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.cta-button:hover {
  background: #00BFA5;
  color: #fff;
}

footer {
  background: #0A2342;
  color: #E0E0E0;
  padding: 100px 40px 40px;
  text-align: center;
  margin-top: 200px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 60px;
}

.footer-section h3 {
  color: #00BFA5;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.footer-links a {
  color: #00BFA5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0;
}

.footer-bottom {
  border-top: 1px solid #1a3d5c;
  padding-top: 40px;
  font-size: 13px;
  color: #888;
}

.disclaimer {
  background: #f5f5f5;
  padding: 40px;
  border-left: 4px solid #00BFA5;
  margin: 80px 0;
  font-size: 16px;
  line-height: 1.8;
}

.faq-item {
  margin: 50px 0;
  text-align: left;
}

.faq-item h3 {
  color: #0A2342;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item h3:hover {
  color: #00BFA5;
}

.faq-item p {
  display: block;
  margin-top: 15px;
  color: #555;
}

form {
  max-width: 600px;
  margin: 60px auto;
  text-align: left;
}

.form-group {
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #0A2342;
  font-weight: 500;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #E0E0E0;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #00BFA5;
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background: #fafafa;
  padding: 20px;
  border-left: 3px solid #7B68EE;
  margin: 30px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.submit-btn {
  background: #00BFA5;
  color: #fff;
  padding: 15px 50px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #0A2342;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A2342;
  color: #E0E0E0;
  padding: 25px 40px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-message {
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 25px;
  border: 1px solid #00BFA5;
  background: transparent;
  color: #00BFA5;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #00BFA5;
  color: #0A2342;
}

.cookie-btn.accept {
  background: #00BFA5;
  color: #0A2342;
  border-color: #00BFA5;
}

.cookie-btn.accept:hover {
  background: transparent;
  color: #00BFA5;
}

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 100px 20px;
  }

  .section-content {
    max-width: 100%;
  }

  .header-container {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 14px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  footer {
    padding: 60px 20px 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
