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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.01rem;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1 {
  font-size: 2.58rem;
  font-weight: 700;
  color: #004D40;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.02rem;
  font-weight: 600;
  color: #004D40;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.48rem;
  font-weight: 600;
  color: #004D40;
  margin-bottom: 1rem;
  line-height: 1.3;
}

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

a {
  color: #004D40;
  text-decoration: none;
  transition: color 0.31s ease;
}

a:hover {
  color: #00332e;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004D40;
}

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

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

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

nav a {
  font-size: 1rem;
  color: #333;
  transition: color 0.31s ease;
}

nav a:hover {
  color: #004D40;
  text-decoration: none;
}

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

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

.hero {
  background: linear-gradient(135deg, #004D40 0%, #00332e 100%);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero p {
  color: #fff;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section {
  padding: 4rem 2rem;
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 6px;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.04);
}

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

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.04);
}

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

.section-content p {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: #004D40;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  transition: all 0.31s ease;
  border: 2px solid #004D40;
}

.cta-button:hover {
  background-color: #00332e;
  border-color: #00332e;
  color: #fff;
  text-decoration: none;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-left: 4px solid #004D40;
  border-radius: 6px;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
}

.footer {
  background-color: #004D40;
  color: #fff;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.31s ease;
}

.footer-section a:hover {
  color: #b3d9d6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #004D40;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #004D40;
  box-shadow: 0 0 0 2px rgba(0, 77, 64, 0.1);
}

.form-group button {
  background-color: #004D40;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.31s ease;
}

.form-group button:hover {
  background-color: #00332e;
}

.disclaimer {
  background-color: #f0f8f7;
  border-left: 4px solid #004D40;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.blog-card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.04);
  transition: transform 0.31s ease, box-shadow 0.31s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.blog-card h3 {
  margin-bottom: 0.75rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #004D40;
  color: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 -3px 11px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-banner button {
  background-color: #fff;
  color: #004D40;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.31s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

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

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

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

  .container {
    padding: 2rem 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    margin: 0;
  }
}
