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: #013220;
  color: #001f3f;
  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;
}

body {
  font-family: "Roboto", sans-serif;
  background: #001f3f;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.header_div {
  background: linear-gradient(45deg, #001f3f, #013220);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

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

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

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

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

nav ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #027a4d;
  transition: width 0.3s;
}

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

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

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

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

.cookies-div p {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
}

#acceptButton {
  background-color: #027a4d;
  color: #001f3f;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#acceptButton:hover {
  background-color: #025e36;
}

.footer {
  background-color: #013220;
  padding: 40px 20px 20px;
  color: #e0e0e0;
}

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

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

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

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

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

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

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

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

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

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #027a4d;
  transition: width 0.3s;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

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

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

  nav ul {
    margin-top: 10px;
    flex-direction: column;
    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: #001f3f52;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: -1;
}
.hero-content {
  text-align: center;
  color: #e0e0e0;
  text-shadow: 0 0 10px #027a4d;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero-btn {
  padding: 12px 25px;
  background: #027a4d;
  color: #001f3f;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #025e36;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
}

.about-us {
  background-color: #001f3f;
  padding: 60px 20px;
  color: #e0e0e0;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-intro {
  text-align: center;
  margin-bottom: 40px;
}
.about-intro h2 {
  font-size: 2.8rem;
  color: #027a4d;
  text-shadow: 0 0 10px #027a4d;
  margin-bottom: 20px;
}
.about-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.about-details {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-details > div {
  flex: 1 1 calc(33% - 20px);
  background-color: #013220;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px #027a4d;
}
.about-details h3 {
  font-size: 1.8rem;
  color: #0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #027a4d;
}
.about-details p,
.about-details ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.about-values ul {
  list-style-type: disc;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .about-details {
    flex-direction: column;
  }
  .about-details > div {
    flex: 1 1 100%;
  }
  .about-intro h2 {
    font-size: 2rem;
  }
}

.services-detail {
  background-color: #001f3f;
  padding: 60px 20px;
  color: #e0e0e0;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-intro {
  text-align: center;
  margin-bottom: 40px;
}
.services-intro h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #027a4d;
  text-shadow: 0 0 10px #027a4d;
}
.services-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.services-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.service-category {
  background-color: #013220;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px #027a4d;
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}
.service-category h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0ff;
  text-shadow: 0 0 10px #027a4d;
}
.service-category p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.services-extra {
  text-align: center;
}
.services-extra h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0ff;
  text-shadow: 0 0 10px #027a4d;
}
.services-extra p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-details {
    flex-direction: column;
    gap: 20px;
  }
  .services-intro h2 {
    font-size: 2rem;
  }
  .service-category h3 {
    font-size: 1.6rem;
  }
  .services-extra h3 {
    font-size: 1.8rem;
  }
}

.gallery {
  background-color: #001f3f;
  padding: 60px 20px;
  color: #e0e0e0;
  text-align: center;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item img {
  width: 100%;
  border: 3px solid #027a4d;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #027a4d;
}
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  background-color: #001f3f;
  padding: 60px 20px;
  text-align: center;
  color: #e0e0e0;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #027a4d;
  text-shadow: 0 0 10px #027a4d;
}
.testimonials-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.testimonial-item {
  background-color: #013220;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px #027a4d;
  flex: 1 1 calc(33% - 20px);
  max-width: calc(33% - 20px);
  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;
  border: 2px solid #027a4d;
}
blockquote {
  font-style: italic;
  margin: 15px 0;
  color: #e0e0e0;
}
cite {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: #027a4d;
}
@media (max-width: 768px) {
  .testimonials-items {
    flex-direction: column;
  }
  .testimonial-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .testimonials h2 {
    font-size: 2.2rem;
  }
}

.contact {
  background-color: #001f3f;
  padding: 60px 20px;
  color: #e0e0e0;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 40%;
  text-align: center;
  padding: 20px;
}
.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #027a4d;
  text-shadow: 0 0 10px #027a4d;
}
.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.contact-info img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 10px #027a4d;
}
.contact-form {
  flex: 1 1 60%;
  background-color: #013220;
  padding: 30px;
  border: 1px solid #027a4d;
  border-radius: 5px;
  box-shadow: 0 0 10px #027a4d;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #027a4d;
}
.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #027a4d;
  border-radius: 3px;
  background-color: #001f3f;
  color: #e0e0e0;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #025e36;
  box-shadow: 0 0 5px #025e36;
}
.contact-form button {
  background-color: #027a4d;
  color: #001f3f;
  border: none;
  padding: 12px;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #025e36;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
