/* Загальні налаштування */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f2fef3;
  color: #234123;
  scroll-behavior: smooth;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Хедер */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2f855a;
  margin-right: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav a:hover {
  transform: translateY(-2px);
  color: #2f855a;
}

.lang-switch {
  font-weight: 600;
  margin-left: 1rem;
  white-space: nowrap;
}

.lang-switch a {
  color: #2f855a;
  text-decoration: none;
  margin: 0 4px;
}

/* Герой секція */
.hero {
  background-color: #e6f5ec;
  padding: 3rem 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #207a34;
  margin-bottom: 0.8rem;
}

.hero-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #38a169;
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn.solid {
  background-color: #2f855a;
  color: white;
  border: none;
}

.btn.solid:hover {
  background-color: #276749;
}

.btn.outline {
  border: 2px solid #2f855a;
  color: #2f855a;
  background: transparent;
}

.btn.outline:hover {
  background-color: #2f855a;
  color: white;
}

.hero-image img {
  width: 280px;
  height: 280px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #38a169;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(56, 161, 105, 0.4);
}

.about {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.about-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #207a34;
  margin-bottom: 3rem;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.about-column {
  flex: 1;
  min-width: 280px;
  max-width: 48%;
}

.about-column h3 {
  font-size: 1.3rem;
  color: #38a169;
  margin-bottom: 1.2rem;
}

.qual-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

.qual-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.about-column p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.2rem;
}


/* Адаптація для мобільних */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image img {
    width: 180px;
    height: 180px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }
   .about-columns {
    flex-direction: column;
    gap: 3rem;
  }
  .about-column {
    max-width: 100%;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-column h3 {
    font-size: 1.2rem;
  }
}

 /* === СЕРТИФИКАТЫ / ДИПЛОМЫ === */
.certificates {
  background-color: #e6f5ec;
  padding: 4rem 2rem;
}

.cert-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #207a34;
  margin-bottom: 3rem;
}

.cert-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #38a169;
  margin-bottom: 2rem;
}

.cert-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #c0e2d3;
  padding-bottom: 2rem;
}

.cert-text {
  flex: 1;
  min-width: 280px;
  max-width: 55%;
}

.cert-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #207a34;
}

.cert-text p, .cert-text ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.cert-text ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.cert-text li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.cert-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40%;
}

.cert-img img {
  max-width: 100%;
  height: auto;
  border: 3px solid #38a169;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-img.double {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.cert-img.double img {
  width: 48%;
}

/* === АДАПТИВ === */
@media (max-width: 768px) {
  .cert-block {
    flex-direction: column;
  }

  .cert-text {
    max-width: 100%;
  }

  .cert-img,
  .cert-img.double {
    max-width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .cert-img.double img {
    width: 100%;
  }
}
.services {
  padding: 80px 0;
  background-color: #fff;
}

#services-title {
  text-align: center;
  font-size: 32px;
  color: #2f8132;
  font-weight: 700;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.service-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 24px;
  position: relative;
  border-top: 6px solid #2f8132;
}

.service-card h3 {
  color: #2f8132;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}
.services-img {
  flex: 1 1 300px;
  max-width: 340px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  align-self: center;
}

.services-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 8px;
}

.why-mobile-box {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin-top: 80px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

#why-title {
  font-size: 24px;
  font-weight: 700;
  color: #2f8132;
  margin-bottom: 32px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

.why-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 45%;
  gap: 16px;
}

.why-icon {
  font-size: 28px;
  color: #2f8132;
}

.why-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.why-text p {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-items {
    flex-direction: column;
  }
}
.info-box {
  background: #f4fbf6;
  border-radius: 12px;
  padding: 40px;
  margin-top: 80px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  color: #2f8132;
  margin-bottom: 32px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 6px;
}

.info-icon.yellow {
  color: #b58b00;
}

.info-icon.red {
  color: #c62828;
}

.info-text p {
  color: #5c3d2e;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
  }

  .info-icon {
    margin-bottom: 10px;
  }
}
.pricing-section {
  padding: 80px 0;
  background: #fff;
}

#pricing-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2f8132;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}

.price-table {
  overflow-x: auto;
  margin-bottom: 40px;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.price-table th {
  background: #2f8132;
  color: white;
  padding: 14px;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  background: #fff;
  padding: 14px;
  border-bottom: 1px solid #eee;
  color: #111;
}

.price-table tbody tr:last-child td {
  background: #f9f9f9;
  border-bottom: none;
}

.info-card {
  background: #f1fbf2;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
  color: #2f8132;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-card p {
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.info-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.info-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.info-card .btn {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #2f8132;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.info-card .btn:hover {
  background-color: #246826;
}
.contact-section {
  padding: 80px 0;
  background-color: #f1fbf2;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-left, .contact-right {
  flex: 1 1 400px;
}

.contact-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2f8132;
  margin-bottom: 12px;
}

.contact-left h3 {
  color: #2f8132;
  margin-bottom: 16px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-details li {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-details li span {
  margin-right: 10px;
  font-size: 18px;
}

.contact-details li a {
  color: #d77c8a;
  text-decoration: none;
}

.contact-note h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.contact-note p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  background: #eaf3ec;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background: #2f8132;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #246826;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.form-success {
  margin-top: 15px;
  color: #2f8132;
  font-weight: 600;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form label {
  font-weight: 600;
  color: #2e2e2e;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background-color: #2e7d32;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #256428;
}

#form-success {
  color: green;
  font-weight: 500;
  margin-top: 10px;
}
.form-success {
  margin-top: 1rem;
  font-weight: bold;
  color: green;
  text-align: center;
}
.footer {
background-color: #2f7635;
color: white;
padding: 2rem 1rem 1rem;
font-size: 0.9rem;
}
.footer-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 2rem;
}
.footer-logo {
font-weight: 600;
font-size: 1.2rem;
}
.footer-links ul,
.footer-legal ul {
list-style: none;
padding: 0;
margin: 0.5rem 0 0;
}
.footer-links li,
.footer-legal li {
margin-bottom: 0.3rem;
}
.footer a {
color: white;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.footer-heading {
font-weight: 600;
margin-bottom: 0.3rem;
}
.footer-bottom {
text-align: center;
margin-top: 1.5rem;
font-size: 0.8rem;
opacity: 0.8;
}

/* Datenschutz Page Styles */
.datenschutz-body {
  background-color: #edf7ec;
  font-family: 'Montserrat', sans-serif;
  color: #444;
  line-height: 1.6;
}

.datenschutz {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.datenschutz-title {
  text-align: center;
  color: #256428;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.datenschutz p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.datenschutz ul {
  margin: 1rem 0 2rem 1.5rem;
  padding-left: 1rem;
  list-style: disc;
}

.datenschutz ul li {
  margin-bottom: 0.5rem;
}

/* Footer on Datenschutz */
.footer {
  background-color: #2f7a37;
  color: #fff;
  padding: 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 200px;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links,
.footer-legal {
  flex: 1 1 160px;
}

.footer-links h4,
.footer-legal h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-legal a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #cceacc;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #e2f3e3;
}
/* HEADER */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #009688;
}

.lang-switch {
  margin-left: auto;
  font-size: 0.9rem;
}

.lang-switch a {
  color: #666;
  text-decoration: none;
  margin: 0 4px;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: #009688;
  font-weight: bold;
}
.impressum-section {
  padding: 80px 0;
  background-color: #eaf7eb;
  font-family: 'Montserrat', sans-serif;
}

.impressum-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  color: #222;
  line-height: 1.6;
}

.impressum-section .centered {
  text-align: center;
  margin-bottom: 30px;
}

.impressum-section h1 {
  font-size: 2rem;
  color: #2b7a3c;
  font-weight: 700;
  margin-bottom: 40px;
}


