@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary-accent: #62846F;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-light: #E8E8E8;
  --spacing-base: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 70px;
  margin-bottom: 0;
}

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

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 36px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

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

a:hover {
  opacity: 0.8;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-white);
}

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

.hero-text h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

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

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.section-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.section-image.right {
  order: 2;
}

.section-text {
  order: 1;
}

.section-image.right + .section-text {
  order: 1;
}

.disclaimer-block {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-accent);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-accent);
  color: var(--bg-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #556B5B;
  color: var(--bg-white);
}

.faq-section {
  padding: 3.6rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  color: var(--primary-accent);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
}

footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  padding: 3.6rem 1.7rem;
  margin-top: 3.6rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 13px;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

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

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
}

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

button[type="submit"] {
  background-color: var(--primary-accent);
  color: var(--bg-white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #556B5B;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  z-index: 999;
  display: none;
}

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

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

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

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

.cookie-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #556B5B;
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.cookie-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

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

  nav a {
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-content,
  .section-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-image.right {
    order: -1;
  }

  .section-text {
    order: 0;
  }

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

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

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

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

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

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

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 12px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .container,
  .hero-content,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
