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

html {
  font-size: 16px;
}

body {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #f9f9f7;
  line-height: 1.67;
}

a {
  color: #3CB371;
  text-decoration: none;
  transition: opacity 0.28s ease;
}

a:hover {
  opacity: 0.8;
}

h1 {
  font-size: 2.72rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.2;
}

h2 {
  font-size: 2.02rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #222;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

p {
  font-size: 1.09rem;
  margin-bottom: 1rem;
  color: #444;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3CB371;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo a {
  color: #3CB371;
}

nav {
  display: flex;
  gap: 2rem;
}

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

nav a:hover {
  color: #3CB371;
}

main {
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(60,179,113,0.1), rgba(60,179,113,0.05));
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 4px 16px rgba(60,179,113,0.1);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.hero-content p {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.section-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e8e8e4;
}

.section-intro h2 {
  color: #3CB371;
  margin-bottom: 1rem;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-row.reverse {
  direction: rtl;
}

.content-row.reverse > * {
  direction: ltr;
}

.content-row img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60,179,113,0.15);
}

.text-block {
  line-height: 1.8;
}

.text-block h3 {
  color: #3CB371;
  margin-bottom: 1rem;
}

.text-block ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.text-block li {
  margin-bottom: 0.75rem;
  color: #444;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(60,179,113,0.15);
}

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

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

.blog-card-content h3 {
  margin-bottom: 0.75rem;
  color: #222;
}

.blog-card-content p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.blog-card-content a {
  color: #3CB371;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.28s ease;
}

.blog-card-content a:hover {
  gap: 0.75rem;
}

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

.faq-section {
  margin-top: 2rem;
}

.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.faq-question {
  padding: 1.5rem;
  background: #f5f5f3;
  cursor: pointer;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.28s ease;
  user-select: none;
}

.faq-question:hover {
  background: #efefeb;
}

.faq-toggle {
  color: #3CB371;
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 0.28s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-answer p {
  color: #555;
  margin-bottom: 0.75rem;
}

.cta-block {
  background: linear-gradient(135deg, rgba(60,179,113,0.08), rgba(60,179,113,0.03));
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #3CB371;
  margin: 3rem 0;
}

.cta-block h3 {
  color: #3CB371;
  margin-bottom: 1rem;
}

.cta-block p {
  margin-bottom: 1.5rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: #3CB371;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.28s ease;
}

.cta-button:hover {
  background-color: #2d9a56;
}

footer {
  background-color: #222;
  color: #ccc;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid #3CB371;
}

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

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

.footer-section h4 {
  color: #3CB371;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #3CB371;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.footer-links a {
  color: #3CB371;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.disclaimer {
  background: #f0f8f4;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3CB371;
  margin: 2rem 0;
}

.disclaimer p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: system-ui, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: border-color 0.28s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3CB371;
  box-shadow: 0 0 0 3px rgba(60,179,113,0.1);
}

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

.form-submit {
  background-color: #3CB371;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.28s ease;
}

.form-submit:hover {
  background-color: #2d9a56;
}

.page-title {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e8e8e4;
}

.page-title h1 {
  color: #3CB371;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  background: #f9f9f7;
  border-radius: 8px;
}

.contact-info-item h3 {
  color: #3CB371;
  margin-bottom: 0.75rem;
}

.contact-info-item p {
  color: #555;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #3CB371;
}

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

.cookie-accept {
  background-color: #3CB371;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.28s ease;
}

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

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

  h2 {
    font-size: 1.4rem;
  }

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

  nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    padding: 0.5rem;
  }

  main {
    margin-top: 180px;
    padding: 0 1rem;
  }

  .hero {
    height: 300px;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

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

  .content-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  .cookie-accept {
    width: 100%;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

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