:root {
  --primary-color: #2d3e50;
  --secondary-color: #8ab6d6;
  --accent-color: #e0a899;
  --background-color: #f5f5f5;
  --text-color: #333;
  --footer-bg: #2d3e50;
  --footer-text: #fff;
  --cookie-bg: #fff;
  --cookie-border: #ccc;
  --header-height: 70px;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: white;
  color: var(--accent-color);
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

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

body {
  font-family: "Arial", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.header_div header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header_div header:hover {
  background-color: var(--secondary-color);
}

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

.header-container .logo img {
  width: 150px;
  transition: transform 0.3s ease;
}

.header-container .logo img:hover {
  transform: scale(1.1);
}

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

nav ul li {
  margin-left: 20px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  margin-top: 5px;
}

nav ul li a:hover::after {
  width: 100%;
}

section iframe {
  margin-top: var(--header-height);
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-height));
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--cookie-bg);
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.cookies-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookies-section p {
  margin: 0;
  font-size: 1rem;
}

.cookies-section button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookies-section button:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 20px 20px;
  margin-top: 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo,
.footer-contact,
.footer-hours {
  flex: 1 1 200px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 1.1rem;
}

.footer-contact h3,
.footer-hours h3 {
  margin-bottom: 10px;
}

.footer-contact p,
.footer-hours p {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 0.9rem;
}

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

  nav ul {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav ul li {
    margin: 10px 0;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  display: flex;
  position: absolute;
  width: 300%;
  height: 100%;
  animation: slideAnimation 15s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

@keyframes slideAnimation {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  83% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-200%);
  }
}

.about-section {
  padding: 60px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

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

.about-container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 400px;
}

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

.service-section {
  padding: 60px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

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

.service-container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.service-container p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.service-description {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-description img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-description img:hover {
  transform: scale(1.05);
}

.service-text h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-align: center;
}

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

.service-advantages {
  flex: 1 1 500px;
}

.service-advantages h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-item {
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.advantage-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.advantage-item p {
  font-size: 0.9rem;
  color: var(--text-color);
}

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

  .advantages-list {
    grid-template-columns: 1fr;
  }
}

.advantages-section {
  padding: 60px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.advantages-container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.advantages-container p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 40px;
}

.advantages-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin: 15px 0 10px;
}

.card p {
  font-size: 1rem;
  color: var(--text-color);
  padding: 0 15px 15px;
  margin: 0;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

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

.contact-container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1 1 400px;
}

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

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

.contact-form label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-form input {
  padding: 10px;
  border: 1px solid var(--cookie-border);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.contact-form button {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--secondary-color);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fullpage-contact {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

.fullpage-contact__container {
  width: 100%;
  max-width: 500px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fullpage-contact__form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 2rem;
}

.fullpage-contact__field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.fullpage-contact__field label {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.fullpage-contact__field input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid var(--cookie-border);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.fullpage-contact__field input:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.fullpage-contact__form button {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fullpage-contact__form button:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 480px) {
  .fullpage-contact__container {
    padding: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-details {
  padding: 160px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

.service-details__container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-details__container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.service-details__intro {
  font-size: 1.1rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.service-details__overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.service-details__image {
  flex: 1 1 500px;
}

.service-details__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-details__image img:hover {
  transform: scale(1.05);
}

.service-details__content {
  flex: 1 1 500px;
}

.service-details__content h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-details__content p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-details__content ul {
  list-style: disc inside;
  padding-left: 20px;
  color: var(--text-color);
}

.service-details__content ul li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-details__process {
  margin-bottom: 50px;
}

.service-details__process h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}

.service-details__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.service-details__step {
  flex: 1 1 220px;
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-details__step .step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 10px;
}

.service-details__step h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-details__step p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.service-details__benefits {
  margin-bottom: 50px;
}

.service-details__benefits h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}

.service-details__benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.service-details__benefits-list .benefit-item {
  flex: 1 1 250px;
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details__benefits-list .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-details__benefits-list .benefit-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.service-details__benefits-list .benefit-item h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-details__benefits-list .benefit-item p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.service-details__cta {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.service-details__cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-details__cta p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-details__btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-details__btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .service-details__overview {
    flex-direction: column;
  }
  .service-details__steps,
  .service-details__benefits-list {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-details {
  padding: 160px 20px;
  background-color: #fff;
  animation: fadeIn 1s ease forwards;
}

.about-details__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-details__container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.about-details__intro {
  font-size: 1.1rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-details__history {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.about-details__image {
  flex: 1 1 500px;
}

.about-details__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-details__image img:hover {
  transform: scale(1.05);
}

.about-details__content {
  flex: 1 1 500px;
}

.about-details__content h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about-details__content p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-details__content ul {
  list-style: disc inside;
  padding-left: 20px;
  color: var(--text-color);
}

.about-details__content ul li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-details__team {
  margin-bottom: 50px;
}

.about-details__team h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
}

.about-details__team p {
  font-size: 1rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 30px;
}

.about-details__team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  flex: 1 1 250px;
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.95rem;
  color: var(--text-color);
}

.about-details__values {
  margin-bottom: 50px;
}

.about-details__values h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-item {
  flex: 1 1 250px;
  background-color: #fff;
  border: 1px solid var(--cookie-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

.about-details__cta {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.about-details__cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.about-details__cta p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.about-details__btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-details__btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-details__history {
    flex-direction: column;
  }
  .about-details__team-members,
  .values-list {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
