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

:root {
  --primary-color: #5B8E7D;
  --text-color: #2c3e50;
  --bg-light: #f9f7f4;
  --bg-white: #ffffff;
  --border-color: #e8e6e1;
  --text-light: #666666;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4a7068;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

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

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

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

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

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

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.hero {
  padding: 0;
  margin-top: 0;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
}

.hero-overlay h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-item {
  background-color: var(--bg-white);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 500;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #4a7068;
  color: white;
}

footer {
  background-color: var(--text-color);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer-banner {
  background-color: #f0f8f6;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.disclaimer-banner p {
  margin-bottom: 0;
}

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

.blog-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.blog-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
}

.blog-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-color);
}

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

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

.btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #4a7068;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.cookie-consent-buttons button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #4a7068;
}

.cookie-close {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.cookie-close:hover {
  background-color: var(--bg-light);
}

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

  main {
    margin-top: 120px;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .two-column,
  .faq-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column img {
    order: -1;
  }

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

  .hero {
    height: 400px;
  }

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

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

  .cookie-consent-buttons button {
    width: 100%;
  }
}

.img-container {
  margin: 2rem 0;
}

.img-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  display: block;
}

.align-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.align-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .align-left,
  .align-right {
    float: none;
    margin: 1rem 0;
  }

  .img-container img {
    max-width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--bg-white);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

table th {
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--text-color);
}

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

.contact-info {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  display: block;
  margin: 0.5rem 0;
}
