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: #007bff;
  color: #f0f0f0;
  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: "Roboto", sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

.header_div {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

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

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

nav ul li a:hover {
  color: #007bff;
}

section iframe {
  display: block;
  width: 100%;
  height: 100vh;
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
}

.cookies-div {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookies-div p {
  font-size: 14px;
  color: #333;
}

#acceptButton {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#acceptButton:hover {
  background-color: #0056b3;
}

.footer {
  background-color: #222;
  color: #ddd;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 16px;
  color: #fff;
}

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

.footer-contact h3,
.footer-hours h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-links {
  margin-top: 20px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

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

  nav ul {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .footer-contact,
  .footer-hours {
    text-align: center;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-color: #0606066b;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.services {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

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

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.services p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.services-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  flex: 1 1 calc(33.333% - 30px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-icon {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #007bff;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

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

  .service-item {
    flex: 1 1 100%;
  }
}

.advantages {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

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

.advantages h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.advantages p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.advantages-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.advantage-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  flex: 1 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
  display: flex;
  flex-direction: column;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
}

.advantage-info {
  padding: 15px;
  text-align: left;
}

.advantage-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #007bff;
}

.advantage-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

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

  .advantage-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonials {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

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

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.testimonials p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.testimonials-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-item {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-item blockquote {
  font-style: italic;
  margin: 15px 0;
  color: #666;
}

.testimonial-item cite {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.contact {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.contact-img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  max-height: 300px;
}

.contact-form {
  flex: 1 1 60%;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

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

button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
}

.about-us {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

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

  .about-image,
  .about-content {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

.service-detail {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
  font-family: "Roboto", sans-serif;
}

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

.service-detail h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.service-intro {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.service-detail-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.service-detail-left {
  flex: 1 1 40%;
}

.service-detail-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

.service-detail-right {
  flex: 1 1 55%;
}

.service-detail-right h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #007bff;
}

.service-detail-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-detail-right ul,
.service-detail-right ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.service-detail-right li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.service-detail-extra {
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 5px;
}

.service-detail-extra h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #007bff;
}

.service-detail-extra p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .service-detail-content {
    flex-direction: column;
  }
  .service-detail-left,
  .service-detail-right {
    flex: 1 1 100%;
  }
  .service-detail h2 {
    font-size: 28px;
  }
  .service-detail-right h3,
  .service-detail-extra h3 {
    font-size: 24px;
  }
}
