/* styles/about.css */

/* Wrapper for the entire content section */
.dynamic-content-wrapper {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Each content block */
.dynamic-content-wrapper .content-block {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

/* Section titles */
.dynamic-content-wrapper h2 {
  font-size: 1.8rem;
  color: #540081;
  margin-bottom: 0.5rem;
}

/* Subheadings */
.dynamic-content-wrapper .subheading {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

/* Text content */
.dynamic-content-wrapper .content-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Image block */
.dynamic-content-wrapper .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 1rem;
}

/* Video block */
.dynamic-content-wrapper .content-video {
  margin-top: 1rem;
}

.dynamic-content-wrapper .content-video video {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
}

/* CTA Button */
.dynamic-content-wrapper .cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #540081;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.dynamic-content-wrapper .cta-button:hover {
  background-color: #6b00a3;
}
