/* Container Layout */
.lecture-capture-section {
  background-color: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

/* Main Heading */
.lecture-capture-section h2 {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

/* Subheading */
.lecture-capture-section .subheading {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 40px;
}

/* Card Style Container */
.lecture-capture-section .card-box {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

/* Text Content */
.lecture-flow-text-content {
  flex: 1;
  text-align: left;
}

/* Paragraphs */
.lecture-flow-text-content p {
  font-size: 1.6rem;
  color: #444;
  margin-bottom: 20px;
}

/* Ordered List */
.lecture-flow-text-content ol {
  font-size: 1.6rem;
  color: #333;
  padding-left: 1.5em;
  margin-bottom: 30px;
}

.lecture-flow-text-content ol li {
  margin-bottom: 15px;
}

/* Image */
.lecture-diagram {
  flex: 1;
  text-align: center;
}

.lecture-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .lecture-capture-section .card-box {
    flex-direction: column;
    padding: 30px 20px;
  }

  .lecture-capture-section h2 {
    font-size: 2.8rem;
  }

  .lecture-capture-section .subheading {
    font-size: 1.6rem;
  }
}
