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

html, body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #1A237E;
}

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
}

a {
  color: #1A237E;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #1A237E;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A237E;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.8;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.25s ease;
}

nav a:hover {
  color: #1A237E;
}

main {
  margin-top: 80px;
  padding: 0;
}

.hero {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #1A237E 0%, #0d47a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

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

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

.hero p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-two-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-text {
  line-height: 1.8;
}

.section-text h2 {
  margin-bottom: 1.5rem;
}

.section-text p {
  margin-bottom: 1rem;
  color: #555555;
}

footer {
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 2rem;
  font-size: 0.9rem;
  color: #666666;
}

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

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

.footer-section p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section a {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}

.disclaimer-box {
  background-color: #fafafa;
  border: 1px solid #1A237E;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A237E;
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  font-weight: 500;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #1A237E;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
  padding: 2rem;
  background-color: #fafafa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A237E;
  box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

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

.btn-primary {
  background-color: #1A237E;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: #0d1a52;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #1A237E;
}

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

.product-card-content {
  padding: 1.5rem;
}

.product-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-card-content p {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
}

.product-card-content a {
  display: inline-block;
  color: #1A237E;
  font-weight: 500;
  border-bottom: 1px solid #1A237E;
  transition: all 0.25s ease;
}

.product-card-content a:hover {
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .section-two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .cookie-buttons {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

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