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

:root {
  --primary-color: #0D47A1;
  --secondary-blue: #1565C0;
  --light-blue: #E8F4FD;
  --neutral-bg: #F8F9FA;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --border-light: #E0E6ED;
  --white: #FFFFFF;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-dark);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.5s ease;
}

.navbar-brand:hover {
  color: var(--secondary-blue);
  text-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.5s ease;
  position: relative;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.5s ease;
}

.nav-link:hover::after {
  width: 100%;
}

main {
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}

.hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.08) 0%, rgba(21, 101, 192, 0.04) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.15);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, rgba(13, 71, 161, 0.3) 100%);
  border-radius: 2px;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s ease;
  margin-bottom: 2rem;
}

.content-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
  transform: translateY(-2px);
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.1);
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.5s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  box-shadow: 0 6px 16px rgba(13, 71, 161, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--light-blue);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

footer {
  background: var(--neutral-bg);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-section h6 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-divider {
  border-top: 1px solid var(--border-light);
  margin: 1.5rem 0;
  padding-top: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.disclaimer-banner {
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(21, 101, 192, 0.08) 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 500;
}

.disclaimer-banner strong {
  color: var(--primary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(13, 71, 161, 0.15);
  max-height: 200px;
  overflow-y: auto;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--secondary-blue);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--light-blue);
  border-left: 3px solid var(--primary-color);
  border-radius: 4px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(13, 71, 161, 0.15);
  transform: translateY(-4px);
}

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

.product-info {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.product-info p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--text-light);
}

.product-info .btn-primary {
  align-self: flex-start;
}

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

.grid-2 img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.1);
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .grid-2, .grid-2.reverse {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 0;
  }

  .hero-image {
    height: 250px;
  }

  .content-image {
    height: 200px;
  }

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

  header {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  main {
    padding-top: 60px;
  }

  .hero {
    padding: 2rem 0;
  }

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

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  body {
    font-size: 14px;
  }

  p {
    font-size: 0.95rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero-image {
    height: 200px;
  }
}
