@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Lora:wght@400;500;700&display=swap');

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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.5;
}

a {
  color: #455A64;
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: #263238;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: #263238;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

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

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(69, 90, 100, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo a {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #455A64;
}

.logo a:hover {
  color: #263238;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.18s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #455A64;
  border-bottom-color: #455A64;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background-color: #f8f9fa;
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

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

.hero p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(69, 90, 100, 0.12);
  margin-top: 2rem;
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.image-right {
  text-align: center;
  order: 2;
}

.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(69, 90, 100, 0.1);
}

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

.product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.18s ease;
  box-shadow: 0 2px 6px rgba(69, 90, 100, 0.06);
}

.product-card:hover {
  box-shadow: 0 6px 12px rgba(69, 90, 100, 0.12);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
}

.cta-button {
  display: inline-block;
  background-color: #455A64;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 1rem;
  transition: background 0.18s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.content-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.content-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.content-text li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.content-text li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #455A64;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: #fff;
}

table th {
  background-color: #455A64;
  color: #fff;
  padding: 0.8rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background-color: #f5f5f5;
}

footer {
  background-color: #263238;
  color: #fff;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer a {
  color: #b0d1ff;
  transition: color 0.18s ease;
}

footer a:hover {
  color: #fff;
}

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

.footer-section h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-top: 1px solid #455A64;
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-disclaimer {
  text-align: center;
  color: #aaa;
  padding: 1rem 0;
  border-top: 1px solid #455A64;
  margin-top: 1rem;
}

.disclaimer-box {
  background-color: #f5f5f5;
  border-left: 4px solid #455A64;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #455A64;
  margin-bottom: 0.8rem;
}

.disclaimer-box p {
  color: #666;
  font-size: 0.95rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #455A64;
  box-shadow: 0 0 0 3px rgba(69, 90, 100, 0.1);
}

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

.form-submit {
  background-color: #455A64;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease;
  font-family: 'Roboto Condensed', sans-serif;
}

.form-submit:hover {
  background-color: #263238;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #263238;
  color: #fff;
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-text {
  flex: 1;
}

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

.cookie-accept,
.cookie-reject {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.18s ease;
  font-family: 'Roboto Condensed', sans-serif;
}

.cookie-accept {
  background-color: #455A64;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #34474d;
}

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

.cookie-reject:hover {
  background-color: #34474d;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .cookie-banner {
    font-size: 0.8rem;
  }

  .cookie-buttons {
    gap: 0.5rem;
  }

  .cookie-accept,
  .cookie-reject {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

.divider {
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

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

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

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