@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

:root {
  --primary-color: #4C6B5F;
  --light-bg: #F8F9F7;
  --text-dark: #2C3E35;
  --text-light: #5A6B63;
  --border-color: #E0E3E0;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

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

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 1rem 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo-home {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  text-decoration: none;
}

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

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

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

section {
  padding: 4rem 0;
}

.hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(76, 107, 95, 0.1);
}

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

.two-column img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(76, 107, 95, 0.1);
}

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

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

.cta-block {
  text-align: center;
  padding: 2.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin: 0.5rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #3d5449;
  color: var(--white);
}

.faq {
  margin: 2rem 0;
}

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

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin: 1rem 0;
}

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

.disclaimer {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer strong {
  color: var(--primary-color);
}

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

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

input, textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 107, 95, 0.1);
}

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

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

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

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

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

.blog-card {
  background: var(--light-bg);
  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(76, 107, 95, 0.15);
}

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

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

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

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

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.links-block a {
  display: block;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.links-block a:hover {
  background-color: #e8ecea;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.95rem;
  }

  section {
    padding: 2.5rem 0;
  }

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

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

  .container {
    padding: 0 1.5rem;
  }

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

  main {
    margin-top: 70px;
  }
}
