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: #5e72eb;
  color: white;
  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: "Comic Sans MS", cursive, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dce8ff;
  color: #2c2a4a;
}

.header_div {
  background-color: #7688e6;
  padding: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.logo img {
  max-height: 80px;
}

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

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  background: #5e72eb;
  transition: background 0.3s, transform 0.2s;
}

nav ul li a:hover {
  background: #4a5ac9;
  transform: scale(1.05);
}

section iframe {
  width: 100%;
  height: calc(100vh - 100px);
  border: none;
  display: block;
}

.cookies-section {
  background-color: #b6c6ff;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #5e72eb;
  border-bottom: 2px solid #5e72eb;
}

.cookies-div p {
  color: #2c2a4a;
  font-size: 16px;
  font-weight: bold;
}

.cookies-div button {
  background-color: #5e72eb;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.cookies-div button:hover {
  background: #4a5ac9;
  transform: scale(1.05);
}

.footer_div {
  background: #5e72eb;
  padding: 50px 20px;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  max-height: 80px;
}

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

.footer-links li {
  display: inline-block;
}

.footer-links li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  padding: 8px 15px;
  background: #7688e6;
  border-radius: 20px;
  transition: background 0.3s, transform 0.2s;
}

.footer-links li a:hover {
  background: #4a5ac9;
  transform: scale(1.05);
}

.footer-note {
  font-size: 14px;
  color: #f0f3ff;
  margin-top: 20px;
}

.hero-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

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

.hero-text {
  max-width: 50%;
  text-align: left;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #5e72eb;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s, transform 0.2s;
}

.hero-button:hover {
  background: #4a5ac9;
  transform: scale(1.05);
}

.hero-image {
  max-width: 40%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #5e72eb;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

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

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
  }
}

.services-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-container h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.services-container p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 60px;
  line-height: 1.6;
}

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

.service-item {
  background-color: #b6c6ff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s;
  position: relative;
  overflow: visible;
}

.service-item:hover {
  transform: translateY(-8px);
  background: #a1b2ff;
}

.service-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #5e72eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.service-item:hover img {
  transform: translateX(-50%) scale(1.1);
}

.service-item h3 {
  font-size: 22px;
  color: #2c2a4a;
  margin-top: 80px;
}

.service-item p {
  font-size: 16px;
  color: #4a4a7d;
  margin-top: 10px;
  line-height: 1.5;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 768px) {
  .services-container h2 {
    font-size: 32px;
  }

  .service-item img {
    width: 100px;
    height: 100px;
    top: -30px;
  }

  .service-item h3 {
    margin-top: 50px;
  }
}

.about-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #5e72eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: absolute;
}

.image-left {
  left: -10px;
  top: 20px;
  z-index: 2;
}

.image-center {
  transform: scale(1.2);
  z-index: 3;
  width: 200px;
  height: 200px;
}

.image-right {
  right: -60px;
  bottom: 20px;
  z-index: 1;
  width: 180px;
  height: 180px;
}

.about-image:hover {
  transform: scale(1.1);
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

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

  .about-text {
    text-align: center;
  }

  .about-images {
    position: static;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .about-image {
    position: static;
    transform: scale(1);
  }

  .image-left,
  .image-center,
  .image-right {
    position: static;
  }
}

.gallery-section {
  background-color: #dce8ff;
  padding: 200px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.gallery-container h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.gallery-container p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 40px;
  line-height: 1.6;
}

.gallery-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.gallery-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #5e72eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.gallery-image:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-image-left {
  top: -30px;
  left: 17%;
}

.gallery-image-center {
  top: -30px;
  left: 50%;
  z-index: 2;
}

.gallery-image-right {
  top: -5px;
  right: 20%;
}

.image-bottom-left {
  bottom: -165px;
  left: 1%;
}

.image-bottom-center {
  bottom: -180px;
  left: 33%;
  z-index: 2;
}

.image-bottom-right {
  bottom: -120px;
  right: 1%;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    position: static;
    flex-wrap: wrap;
    gap: 15px;
  }

  .gallery-image {
    position: static;
    width: 120px;
    height: 120px;
  }
}

.owner-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

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

.owner-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.owner-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #5e72eb;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.owner-image img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.owner-text {
  flex: 2;
  text-align: left;
}

.owner-text h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.owner-text p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 20px;
  line-height: 1.8;
}

.owner-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

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

  .owner-text {
    text-align: center;
  }

  .owner-image img {
    width: 150px;
    height: 150px;
  }
}

.form-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #b6c6ff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-text {
  margin-bottom: 30px;
}

.form-text h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.form-text p {
  font-size: 18px;
  color: #4a4a7d;
  line-height: 1.8;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #5e72eb;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2c2a4a;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a7a9d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4a5ac9;
}

.contact-form textarea {
  resize: none;
}

.form-button {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #5e72eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.form-button:hover {
  background-color: #4a5ac9;
  transform: scale(1.05);
}

.form-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px;
  }

  .form-text h2 {
    font-size: 32px;
  }

  .form-button {
    padding: 12px 15px;
    font-size: 16px;
  }
}

.contact-info-section {
  background-color: #dce8ff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

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

.contact-info-container h2 {
  font-size: 38px;
  font-weight: bold;
  color: #2c2a4a;
  margin-bottom: 20px;
}

.contact-info-container p {
  font-size: 18px;
  color: #4a4a7d;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.contact-item {
  background-color: #b6c6ff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s;
}

.contact-item:hover {
  transform: translateY(-8px);
  background: #a1b2ff;
}

.contact-item h3 {
  font-size: 22px;
  color: #2c2a4a;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #4a4a7d;
  line-height: 1.6;
  margin: 0;
}

.contact-info-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #b6c6ff;
  border-radius: 50%;
  z-index: 1;
}

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