<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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: #ff8da1;
  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: #ffe6f0;
  color: #4a2a3a;
  position: relative;
}

body::before {
  content: "";
  font-size: 24px;
  color: #ffc0cb;
  position: absolute;
  top: 20px;
  left: 10%;
  z-index: 0;
  animation: floatStars 6s infinite ease-in-out;
}

body::after {
  content: "";
  font-size: 24px;
  color: #ffb6c1;
  position: absolute;
  bottom: 20px;
  right: 15%;
  z-index: 0;
  animation: floatStars 6s infinite ease-in-out reverse;
}

@keyframes floatStars {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header_div {
  background-color: #ffd1dc;
  padding: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.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: #4a2a3a;
  padding: 10px 18px;
  border-radius: 25px;
  background: #ffe4e9;
  transition: background 0.3s, transform 0.2s;
}

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

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

.cookies-section {
  background-color: #ffe4e9;
  padding: 20px 0;
  text-align: center;
}

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

.cookies-div button {
  background-color: #ffb6c1;
  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: #ff8da1;
  transform: scale(1.05);
}

.footer_div {
  background: #ffb6c1;
  padding: 50px 20px;
  color: #ffffff;
  position: relative;
}

.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: #4a2a3a;
  padding: 8px 15px;
  background: #ffe4e9;
  border-radius: 20px;
  transition: background 0.3s, transform 0.2s;
}

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

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

@media (max-width: 768px) {
  .footer-links {
    gap: 10px;
  }

  nav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }

  .footer-container {
    gap: 20px;
  }
}

.hero-section {
  background-color: #ffe6f0;
  padding: 100px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

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

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

.hero-text h1 {
  font-size: 48px;
  color: #4a2a3a;
  margin-bottom: 20px;
}

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

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

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

.hero-image {
  position: relative;
  width: 400px;
  height: 400px;
  transition: transform 0.3s, transform 0.2s;
}

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

.cat-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffb6c1;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-image {
    width: 250px;
    height: 250px;
  }
}

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

.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: #4a2a3a;
  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 #ffb6c1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.image-left {
  transform: translateX(-30px) translateY(20px);
}

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

.image-right {
  transform: translateX(30px) translateY(-20px);
}

@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;
  }
}

.services-section {
  background-color: #ffe6f0;
  padding: 100px 20px;
}

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

.services-container h2 {
  font-size: 38px;
  font-weight: bold;
  color: #4a2a3a;
  margin-bottom: 40px;
}

.service {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.service-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffb6c1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.service-text h3 {
  font-size: 28px;
  color: #4a2a3a;
  margin-bottom: 15px;
}

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

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text ul li {
  font-size: 16px;
  color: #4a4a7d;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ffb6c1;
}

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

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

  .service-image {
    width: 250px;
    height: 250px;
  }
}
.why-us-section {
  background-color: #ffe6f0;
  padding: 100px 20px;
  text-align: center;
}

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

.why-us-container h2 {
  font-size: 38px;
  font-weight: bold;
  color: #4a2a3a;
  margin-bottom: 20px;
}

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

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

.advantage {
  background-color: #ffb6c1;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.advantage-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 4px solid #ffe6f0;
}

.advantage h3 {
  font-size: 24px;
  color: #4a2a3a;
  margin-bottom: 15px;
}

.advantage p {
  font-size: 16px;
  color: #4a4a7d;
  line-height: 1.6;
}

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

.parallax-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-bg {
  width: 100%;
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.parallax-content h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.parallax-content p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.parallax-button {
  display: inline-block;
  background-color: #ffb6c1;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.parallax-button:hover {
  background-color: #ff8da1;
  transform: scale(1.05);
}

.contact-section {
  background-color: #ffe6f0;
  padding: 100px 20px;
}

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

.contact-info {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: bold;
  color: #4a2a3a;
  margin-bottom: 20px;
}

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

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  font-size: 16px;
  color: #4a4a7d;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #ffb6c1;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #4a2a3a;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background-color: #ff8da1;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

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

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

  .contact-info {
    text-align: center;
  }
}

.kitten-highlight {
  background-color: #FFE6F0;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kitten-container {
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.kitten-image {
  width: 250px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #FFB6C1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.kitten-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: #4A2A3A;
  margin-bottom: 20px;
}

.kitten-text p {
  font-size: 18px;
  color: #4A4A7D;
  margin-bottom: 15px;
  line-height: 1.6;
}

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

  .kitten-image {
    width: 200px;
    height: 400px;
  }

  .kitten-text {
    text-align: center;
  }
}</pre></body></html>