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: #285e61;
  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: #eef2f3;
  color: #333;
}

.header_div header {
  background-color: #285e61;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.logo img {
  max-height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #bedbd5;
}

section iframe {
  margin-top: 70px;
  border: none;
  display: block;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 10px 15px;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

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

.cookies-section p {
  margin: 0;
}

.cookies-section button {
  background-color: #285e61;
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-section button:hover {
  background-color: #1d4446;
}

.footer {
  background-color: #3c4a4a;
  color: #ffffff;
  padding: 40px 20px 20px;
  margin-top: 20px;
}

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

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

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

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-container nav ul {
    flex-direction: column;
    margin-top: 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo,
  .footer-contact,
  .footer-hours {
    flex: none;
    width: 100%;
  }
}

.hero-section {
  background-color: #285e61;
  color: #ffffff;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

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

.hero-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background-color: #ffffff;
  color: #285e61;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #bedbd5;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .hero-container p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.about-section {
  background-color: #eef2f3;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

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

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.boss-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #285e61;
  color: #ffffff;
  border-radius: 8px;
  padding: 40px 20px;
}

.boss-image img {
  width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.boss-info {
  max-width: 500px;
  text-align: left;
}

.boss-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.boss-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-container h2 {
    font-size: 1.8rem;
  }
  .about-container p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .boss-block {
    padding: 20px;
    gap: 20px;
  }
  .boss-image img {
    width: 180px;
  }
  .boss-info h3 {
    font-size: 1.3rem;
  }
}

.history-section {
  background-color: #eef2f3;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

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

.history-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.history-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.history-timeline {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.history-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.history-item:hover {
  transform: scale(1.03);
}

.history-item h3 {
  font-size: 1.3rem;
  color: #285e61;
  margin-bottom: 10px;
}

.history-item p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .history-container h2 {
    font-size: 1.8rem;
  }
  .history-container p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .history-item h3 {
    font-size: 1.1rem;
  }
  .history-item p {
    font-size: 0.95rem;
  }
}

.services-advantages-section {
  background-color: #eef2f3;
  padding: 60px 20px;
}

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

.services-advantages-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.services-advantages-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-advantages-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.services-lists,
.advantages-lists {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.services-lists h3,
.advantages-lists h3 {
  font-size: 1.3rem;
  color: #285e61;
  margin-bottom: 15px;
}

.services-lists ul,
.advantages-lists ul {
  list-style: disc inside;
  margin-bottom: 20px;
  text-align: left;
}

.services-lists ul li,
.advantages-lists ul li {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .services-advantages-content {
    flex-direction: column;
    align-items: center;
  }
  .services-lists,
  .advantages-lists {
    width: auto;
    margin: 0 auto;
  }
}

.gallery-section {
  background-color: #eef2f3;
  padding: 60px 20px;
  text-align: center;
}

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

.gallery-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.gallery-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

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

.contact-section {
  background-color: #eef2f3;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

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

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

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

.form-group {
  text-align: left;
}

.form-group label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
}

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

.contact-btn {
  align-self: center;
  background-color: #285e61;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 1.8rem;
  }
  .contact-container p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
