:root {
  --red: #b30000;
  --gray: #f4f4f4;
  --dark: #222;
  --accent: #ffcc00;
  --font: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

.heading-section-embed {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInDown 0.8s ease-out;
}

.heading-section-embed h1 {
  margin: 0;
  font-size: 2.5rem;
}

.text-buttons-section-embed {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.slideshow-container-embed {
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slide-embed {
  display: none;
  position: relative;
}

.slide-embed.active {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.slide-embed img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.slide-overlay-embed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 1rem;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slide-title-embed {
  font-size: 1.5rem;
  font-weight: bold;
}

.slide-description-embed {
  font-size: 1rem;
  font-weight: 300;
}

.footer-embed {
  text-align: center;
  padding: 1rem;
  background: var(--dark);
  color: white;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}