.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #001f3f;
  color: #fff;
  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;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #001f3f;
  color: #e0f7fa;
  line-height: 1.6;
}

.site-header {
  background: linear-gradient(90deg, #001f3f, #004d40);
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

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

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

.site-nav ul li a {
  text-decoration: none;
  color: #e0f7fa;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.site-nav ul li a:hover {
  color: #66fcf1;
}

.logo img {
  width: 80px;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #e0f7fa;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .site-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background-color: #004d40;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease;
  }

  .site-nav ul.open {
    right: 0;
  }

  .burger {
    display: flex;
  }
}

.content-section {
  padding: 40px 20px;
  background-color: #001f3f;
}

.content-section iframe {
  width: 100%;
  height: 600px;
  border: 5px solid #004d40;
  border-radius: 8px;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #004d40;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(102, 252, 241, 0.5);
}

.cookies-div p {
  color: #e0f7fa;
  margin-right: 10px;
}

#acceptButton {
  background-color: #66fcf1;
  color: #001f3f;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#acceptButton:hover {
  background-color: #52e0d8;
}

.site-footer {
  background-color: #001f3f;
  color: #e0f7fa;
  padding: 40px 20px;
}

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

.footer-hours,
.footer-contact,
.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-hours h3,
.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #66fcf1;
  padding-bottom: 5px;
}

.footer-hours p,
.footer-contact p {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-logo img {
  width: 80px;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  text-align: center;
  margin-top: 20px;
}

.footer-links ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer-links ul li a {
  color: #66fcf1;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background-color: #004d40;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease;
  }
  .site-nav ul.open {
    right: 0;
  }
  .burger {
    display: flex;
  }
}

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

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 63, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e0f7fa;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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

.about-us {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}

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

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

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #66fcf1;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(102, 252, 241, 0.5);
}

.services {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}

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

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #66fcf1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #004d40;
  border: 2px solid #66fcf1;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(102, 252, 241, 0.5);
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #adff2f;
}

.service-item p {
  font-size: 1.1rem;
  color: #e0f7fa;
}

.gallery {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}
.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gallery h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #66fcf1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  border: 2px solid #004d40;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}
.contact-form .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-form h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #66fcf1;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #66fcf1;
}
.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #004d40;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #001f3f;
  color: #e0f7fa;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #66fcf1;
}
.submit-btn {
  background-color: #004d40;
  color: #e0f7fa;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}
.submit-btn:hover {
  background-color: #66fcf1;
  color: #001f3f;
}

.about-us-detailed {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}

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

.about-us-detailed h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: #66fcf1;
}

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

.about-text {
  flex: 2;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

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

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(102, 252, 241, 0.5);
}

.detailed-services {
  padding: 60px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
}

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

.detailed-services h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: #66fcf1;
}

.det-service-item {
  margin-bottom: 60px;
  border-bottom: 2px solid #004d40;
  padding-bottom: 40px;
}

.det-service-item h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #66fcf1;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.service-content img {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(102, 252, 241, 0.5);
}

.service-details {
  flex: 2 1 300px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.service-details p {
  margin-bottom: 20px;
}

.service-details ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-details li {
  margin-bottom: 10px;
}

.service-details p strong {
  color: #66fcf1;
}

.fullpage-contact {
  min-height: 100vh;
  padding: 40px 20px;
  background-color: #001f3f;
  color: #e0f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.form-column,
.contact-info-column {
  flex: 1 1 400px;
  background-color: #004d40;
  padding: 20px;
  border-radius: 8px;
}

.form-column h2,
.contact-info-column h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #66fcf1;
  text-align: center;
}

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

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

.form-group label {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #66fcf1;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #66fcf1;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #001f3f;
  color: #e0f7fa;
}

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

.submit-btn {
  background-color: #66fcf1;
  color: #001f3f;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
}

.submit-btn:hover {
  background-color: #adff2f;
  color: #001f3f;
}

.contact-info-column p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-info-column ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
}

.contact-info-column ul li {
  margin-bottom: 5px;
}
