* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(150deg, #e179c3, #a39dc6, #ed00b5);
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #eee;
  color: #6447d6;
  text-align: center;
  padding: 20px 10px;
}

header p {
  color: #443030;
}

.logo {
  width: 300px;
  height: auto;
  border-radius: 10px;
  background-color: #8979e1;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  background-color: rgb(38, 34, 37);
  color: #ed00b5;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.call-btn {
  text-align: center;
  margin: 20px 0;
}

/* Services section */
.services {
  /background: white;
  padding: 20px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services h2 {
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
}

/*.services label {
  display: inline-block;
  margin: 8px 0;
}

/* Photo slider */
.photo-slider {
  background: white;
  padding: 20px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.photo-slider h2 {
  padding: 10px;
  align-items: center;
}

.slider {
  display: flex;
  margin: 5px;
  transition: transform 0.5s ease-in-out;
}
.slider img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  padding: 5px;
}

/*Information section*/
.details {
  flex: 1 1 400px;
  padding: 20px 10px;
}

.details h2 {
  color: #e3dddd;
  margin-bottom: 10px;
  padding: 10px;
}

.details p {
  color: #e3dddd;
  margin-bottom: 10px;
}

.details ul {
  margin-bottom: 15px;
  list-style: none;
}

.details ul li {
  /display: inline;
  background: #eee;
  margin-bottom: 5px;
  padding: 8px;
  border-radius: 5px;
}

/* WhatsApp button */
.whatsapp-btn {
  text-align: center;
  margin: 20px 0;
}

footer {
  flex: center;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  align-items: center;
  text-align: center;
}

footer a {
  color: rgb(203, 56, 164);
}

.animated-text {
  color: #5e163e;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.animated-text span {
  position: absolute;
  width: 100%;
  left: 0;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
