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: #f9f9f9;
  color: #00eaff;
  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;
  background-color: #f9f9f9;
  color: #333;
}

.header_div header {
  background-color: #ffffff;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid #00eaff;
}

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

.logo img {
  max-height: 70px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 8px #00eaff);
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px #ff00aa);
}

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

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00eaff;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ff00aa;
  transform: scale(1.05);
}

section iframe {
  margin-top: 140px;
  width: 100%;
  height: calc(100vh - 140px);
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  border: 2px solid #00eaff;
  border-radius: 12px;
  padding: 15px 20px;
  z-index: 1100;
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.cookies-section p {
  font-size: 16px;
  font-weight: bold;
  color: #00eaff;
}

.cookies-section button {
  background-color: #00eaff;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cookies-section button:hover {
  background-color: #ff00aa;
  transform: scale(1.1);
}

.footer {
  background-color: #ffffff;
  padding: 40px 20px 20px;
  border-top: 4px solid #00eaff;
  color: #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.footer-logo p {
  font-size: 14px;
  margin-top: 10px;
  color: #00eaff;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ff00aa;
}

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

.footer-links {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

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

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

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

.footer-bottom {
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  margin-top: 20px;
  color: #666;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-section {
  display: flex;
  flex-direction: column;
}

.hero-top {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 4px solid #39ff14;
}

.hero-top-content h1 {
  font-size: 2.8rem;
  color: #0d0d0d;
  margin-bottom: 20px;
}

.hero-top-content p {
  font-size: 1.4rem;
  color: #333;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

@media (max-width: 768px) {
  .hero-top-content h1 {
    font-size: 2.2rem;
  }
  .hero-top-content p {
    font-size: 1.2rem;
  }
  .hero-image-wrapper {
    height: 50vh;
  }
}

.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #00eaff;
  border-bottom: 4px solid #00eaff;
}

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

.about-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00eaff;
}

.about-container p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #333;
}

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

.about-images img {
  width: 45%;
  max-width: 500px;
  border: 3px solid #00eaff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .about-container h2 {
    font-size: 2.2rem;
  }
  .about-container p {
    font-size: 1.2rem;
  }
  .about-images {
    flex-direction: column;
  }
  .about-images img {
    width: 100%;
    max-width: 100%;
  }
}

.services-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #00eaff;
  border-bottom: 4px solid #00eaff;
  color: #333;
}

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

.services-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00eaff;
}

.services-container p {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  width: 40%;
  max-width: 400px;
  border-radius: 8px;
  border: 3px solid #00eaff;
  transition: transform 0.3s ease;
}

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

.service-details {
  width: 60%;
}

.service-details h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff00aa;
}

.service-details p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }
  .service-image,
  .service-details {
    width: 100%;
  }
  .services-container h2 {
    font-size: 2.2rem;
  }
  .services-container p {
    font-size: 1.2rem;
  }
  .service-details h3 {
    font-size: 1.8rem;
  }
  .service-details p {
    font-size: 1rem;
  }
}

.advantages-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #00eaff;
  border-bottom: 4px solid #00eaff;
  color: #333;
}

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

.advantages-container h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00eaff;
}

.advantages-container p {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.advantages-list li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: #333;
}

.advantages-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #ff00aa;
}

@media (max-width: 768px) {
  .advantages-container h2 {
    font-size: 2.2rem;
  }
  .advantages-container p {
    font-size: 1.2rem;
  }
  .advantages-list li {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

.contact-info-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #333;
}

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

.contact-details {
  flex: 1 1 500px;
}

.contact-details h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #00eaff;
}

.contact-details p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.info-list li {
  margin-bottom: 15px;
}

.info-list li strong {
  color: #ff005a;
}

.contact-form-container {
  flex: 1 1 500px;
}

.contact-form-container h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #00eaff;
}

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

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

.form-group label {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ff005a;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #00eaff;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff005a;
}

.contact-submit-btn {
  background-color: #00eaff;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact-info-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-details h2 {
    font-size: 2.2rem;
  }
  .contact-details p, .info-list {
    font-size: 1rem;
  }
  .contact-form-container h3 {
    font-size: 2rem;
  }
  .form-group input, .form-group textarea {
    font-size: 0.9rem;
  }
  .contact-submit-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}