body {
  font-family: 'Luckiest Guy', cursive;
  background-color: #fdfdfd;
  color: #333;
  font-size: 16px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff5722;
}
.video-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.video-container video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.video-container .overlay h1 {
  font-size: 4rem;
  color: #e91e63;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.video-container .overlay p {
  font-size: 1.5rem;
  color: #3f51b5;
  margin-bottom: 1.5rem;
}
.advantage-box {
  background: #fff;
  padding: 30px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-box {
  background: #fff;
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
footer {
  font-size: 1rem;
}
footer .social-icons a {
  margin: 0 10px;
  transition: color 0.3s ease;
}
footer .social-icons a:hover {
  color: #ff5722;
}
.irregular-bg {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  clip-path: polygon(0 0, 100% 10%, 90% 100%, 0% 90%);
  padding: 50px 20px;
}
.irregular-bg-blue {
  background: linear-gradient(315deg, #2196F3, #21CBF3);
  clip-path: polygon(100% 0, 0 10%, 10% 100%, 100% 90%);
  padding: 50px 20px;
}
#fixedBlock {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  height: 250px;
  background-color: #ffeb3b;
  border: 2px solid #f44336;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.fixed-content {
  text-align: center;
}
.fixed-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .video-container .overlay h1 {
    font-size: 2.5rem;
  }
  .video-container .overlay p {
    font-size: 1.2rem;
  }
}
.review-box img {
  width: 100%;
  border-radius: 50%;
}
.video-container img {
  width: 320px;
}