@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  overflow-x: hidden;
  position: relative;
}

header {
  padding: 10px 0;
  z-index: 100;
  width: 100%;
}

nav ul {
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
a p {
  text-transform: uppercase;
  color: #2c6b2f;
  font-weight: 800;
  font-size: 20px;
}
nav ul li a {
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* .container-features {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  background-color: #fff;
}

.feature {
  text-align: center;
  width: 30%;
} */

footer {
  background-color: #ffd60a;
  color: #333;
  padding: 30px 0;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
footer p {
  margin: 0;
}

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

.footer-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #f4a300;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

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

/* ======= CONTACTO ======= */
.contact {
  background-color: #e0f4e0;
  color: #244e33;
  padding: 100px 20px;
}
.container-contact {
  display: flex;
}
.contact-text,
.form {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #ffcc70;
  margin: 10px;
  border-radius: 2px;
}

.contact p {
  font-size: 1.1rem;
}
.container-contact {
  margin-top: 50px;
}
/* INFORMACIÓN DE CONTACTO */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}
.info-item p {
  display: flex;
  flex-direction: column;
  justify-content: start;

  align-items: start;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
}
.info-item strong {
  color: #388e3c;
}
/* FORMULARIO DE CONTACTO */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form button {
  padding: 12px;
  background-color: #ffcc70;
  color: #2c6b2f;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #ffcc70;
  transition: transform 0.3s ease-in-out;
}

.info-item:hover i {
  transform: scale(1.2);
}
.btn-contact {
  display: inline-block;
  background-color: #ffcc70;
  color: #2c6b2f;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffb347;
  transform: scale(1.05);
}

.contact-button-container {
  margin-top: 20px;
  text-align: center;
}

/* privacy */

.privacy-policy {
  background-color: #f5f5f5;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.privacy-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.privacy-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* terms */

.terms-conditions {
  background-color: #f4f4f4;
  padding: 100px 0;
  animation: fadeIn 1s ease-in-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-bottom: 20px;
  text-align: center;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c6b2f;
  margin-top: 40px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.terms-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-left: 20px;
}

.terms-list li {
  margin-bottom: 10px;
}

.final-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 30px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* cookies */

.cookies-policy {
  padding: 100px 0;
  font-size: 1rem;
  color: #333;
}

h2.section-title {
  text-align: center;
  font-size: 2rem;
  color: #2c6b2f;
  margin-bottom: 20px;
}

h3.subsection-title {
  color: #2c6b2f;
  font-size: 1.5rem;
  margin-top: 30px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.cookies-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-item h4 {
  color: #2c6b2f;
  font-size: 1.2rem;
}

p,
ul {
  line-height: 1.6;
}

p {
  margin-bottom: 15px;
}



footer a {
  color: #f4a300;
  text-decoration: none;
}

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

/* cookies */

/* Стиль для блоку куків */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cookie-content p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}

.cookie-content a {
  color: #ffd60a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #ffffff;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
  background-color: #00c853;
  color: white;
}

.cookie-accept:hover {
  background-color: #00a84f;
  transform: scale(1.05);
}

.cookie-decline {
  background-color: #d32f2f;
  color: white;
}

.cookie-decline:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .cookie-content p {
    flex: 1;
    margin: 0;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 20px 20px;
  }
}

/* General Styling */
.hero {
  margin: 0;
  padding: 50px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: url("./img/hero.webp") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}
.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* затемнення */
  z-index: -1;
}
.intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.intro h2 {
  color: #0077b6;
  margin-top: 0;
}

.cta {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #007f5f;
  font-weight: bold;
}

.services {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: center;
  color: #333;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-top: 0;
  color: #ffd60a;
  font-size: 1.3rem;
}

.service-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.service-card li {
  margin-bottom: 0.5rem;
}

.why-us {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: center;
  color: #333;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd60a;
}

.why-card h3 {
  margin: 0.5rem 0;
  color: #333;
}

.why-card p {
  font-size: 0.95rem;
  color: #333;
}

.testimonials {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
  text-align: center;
  color: 333;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  font-style: italic;
}

.testimonial-card::before {
  content: "“";
  font-size: 4rem;
  color: #ffd60a;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.5;
}

.quote {
  margin: 1rem 0;
  font-size: 1rem;
  color: #333;
}

.author {
  text-align: right;
  font-weight: bold;
  font-style: normal;
  color: #ffd60a;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.faq {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1rem;
  color: #333;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-item input {
  display: none;
}

.faq-question {
  display: block;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  background: transparent;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item input:checked + .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-item input:checked ~ .faq-answer {
  max-height: 300px;
  padding-bottom: 1rem;
}
.contact {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

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

.contact-info {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info p {
  margin: 1rem 0;
}

.contact-info a {
  color: #ffd60a;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  width: 93%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  background: #ffd60a;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

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

.about {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffd60a;
}

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

.about-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #eee;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

  .about-text {
    font-size: 1rem;
  }
}

.mission {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.mission h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffd60a;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #ddd;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 3rem;
  color: #ffd60a;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.value-item {
  flex: 1;
  max-width: 250px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-item i {
  font-size: 3rem;
  color: #ffd60a;
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1rem;
  color: #eee;
}

.working-process {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.process-item {
  flex: 1;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-item h4 {
  font-size: 1.5rem;
  color: #ffd60a;
  margin-bottom: 1rem;
}

.process-item p {
  font-size: 1rem;
  color: #ddd;
}

@media (max-width: 768px) {
  .values,
  .working-process {
    flex-direction: column;
  }

  .value-item,
  .process-item {
    max-width: 100%;
  }
}
