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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17.5px;
  line-height: 1.68;
  color: #2c3e50;
  background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

h1, h2, h3 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #1565C0;
  margin-bottom: 24px;
}

h1 {
  font-size: 45px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
  font-weight: 500;
}

.container-custom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.32s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1565C0;
  text-decoration: none;
  transition: opacity 0.32s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.32s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1565C0;
  text-decoration: none;
}

main {
  margin-top: 80px;
}

section {
  padding: 80px 0;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 101, 192, 0.15);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #1565C0;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 19px;
  margin-bottom: 32px;
  color: #2c3e50;
}

.content-with-image {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.content-with-image.image-left {
  flex-direction: row;
}

.content-with-image.image-right {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 400px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.btn-primary {
  background: #1565C0;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.32s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.btn-primary:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21,101,192,0.3);
  color: #fff;
  text-decoration: none;
}

.disclaimer-box {
  background: #f0f4f8;
  border-left: 4px solid #1565C0;
  padding: 24px;
  margin: 32px 0;
  border-radius: 6px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.32s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: #1565C0;
  margin-bottom: 12px;
  font-size: 22px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.32s ease;
}

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

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card-content {
  padding: 24px;
}

.product-card-content h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

footer {
  background: #1565C0;
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p, .footer-section a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.32s ease;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 101, 192, 0.98);
  color: #fff;
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
  display: none;
}

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

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content button {
  background: #fff;
  color: #1565C0;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.32s ease;
}

.cookie-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  transition: color 0.32s ease;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.modal-close:hover {
  color: #333;
}

.contact-form {
  max-width: 600px;
  margin: 32px auto 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.32s ease;
}

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

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

.success-message {
  background: #4caf50;
  color: #fff;
  padding: 16px 24px;
  border-radius: 6px;
  margin-top: 16px;
  display: none;
  text-align: center;
}

.success-message.show {
  display: block;
}

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .content-with-image {
    flex-direction: column !important;
  }

  .content-image {
    flex: 1;
    width: 100%;
  }

  .hero-content {
    padding: 32px 24px;
  }

  section {
    padding: 48px 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    padding: 32px 24px;
  }

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

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