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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 20px 0 15px 0;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 30px 0 20px 0;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  border-bottom: 3px solid #2F6A4A;
  padding-bottom: 10px;
  margin: 40px 0 25px 0;
}

h3 {
  font-size: 24px;
  color: #2F6A4A;
  margin: 25px 0 15px 0;
}

p {
  margin: 15px 0;
  line-height: 1.65;
}

a {
  color: #2F6A4A;
  text-decoration: none;
  transition: all 0.2s ease-out;
  font-weight: 500;
}

a:hover {
  color: #fff;
  background-color: #2F6A4A;
  padding: 2px 6px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(47, 106, 74, 0.15);
  z-index: 1000;
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #2F6A4A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo:hover {
  background-color: transparent;
  padding: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #2c2c2c;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-out;
}

nav a:hover {
  color: #2F6A4A;
  background-color: transparent;
  border-bottom: 2px solid #2F6A4A;
  padding: 8px 0;
}

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

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 106, 74, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  font-size: 52px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  margin: 0;
}

section {
  padding: 50px 0;
  border-bottom: 1px solid #e8e8e8;
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.image-left {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 400px;
  height: auto;
  border: 4px solid #2F6A4A;
}

.image-right {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 400px;
  height: auto;
  border: 4px solid #2F6A4A;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

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

.grid-2 img {
  width: 100%;
  height: auto;
  border: 4px solid #2F6A4A;
}

.cta-button {
  display: inline-block;
  background-color: #2F6A4A;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #2F6A4A;
  transition: all 0.2s ease-out;
  margin: 20px 10px 20px 0;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #fff;
  color: #2F6A4A;
  padding: 14px 28px;
}

.blog-link {
  display: inline-block;
  padding: 12px 20px;
  background-color: transparent;
  border: 2px solid #2F6A4A;
  color: #2F6A4A;
  font-weight: 600;
  margin: 10px 0;
  transition: all 0.2s ease-out;
}

.blog-link:hover {
  background-color: #2F6A4A;
  color: #fff;
  padding: 12px 20px;
}

.faq-item {
  margin: 20px 0;
  border-left: 4px solid #2F6A4A;
  padding: 15px 20px;
  background-color: #f9f9f9;
}

.faq-item h3 {
  margin-top: 0;
}

footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 40px 0;
  margin-top: 60px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: 0;
}

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

.footer-column a {
  color: #ccc;
  font-size: 13px;
}

.footer-column a:hover {
  color: #2F6A4A;
  background-color: transparent;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 12px;
}

.disclaimer {
  background-color: #f0f0f0;
  border: 2px solid #2F6A4A;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer h3 {
  margin-top: 0;
  color: #2F6A4A;
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8e8e8;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2F6A4A;
}

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

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-item {
  padding: 30px;
  background-color: #f9f9f9;
  border-left: 4px solid #2F6A4A;
  transition: all 0.2s ease-out;
}

.blog-item:hover {
  background-color: #f0f0f0;
  transform: translateX(5px);
}

.blog-item h3 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #2F6A4A;
  color: #fff;
  border: 2px solid #2F6A4A;
}

.cookie-accept:hover {
  background-color: #fff;
  color: #2F6A4A;
}

.blog-hero img,
.about-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 4px solid #2F6A4A;
  margin-bottom: 30px;
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .image-left,
  .image-right {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .hero {
    height: 250px;
  }

  main {
    margin-top: 120px;
  }
}
