:root {
  /* 基础颜色变量 */
  --primary: #a855f7;
  --primary-light: #c181fd;
  --secondary: #c181fd;
  --dark: #1f2937;
  --light: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-medium: #9ca3af;
  --gray-dark: #4b5563;
  --gray-light: #f3f4f6;

  /* 功能色 */
  --success-light: #a2f0a2;
  --info-light: #bde0fe;

  /* 布局变量 */
  --max-width: 1200px;
  --container-padding: 20px;

  /* 边框与阴影 */
  --radius: 0.5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(168, 85, 247, 0.1),
    0 2px 4px -1px rgba(168, 85, 247, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 10px 25px -5px rgba(168, 85, 247, 0.1),
    0 8px 10px -6px rgba(168, 85, 247, 0.05);

  /* 动画 */
  --transition: all 0.3s ease;
}

/* 全局样式重置与基础设置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
}

body {
  background-color: var(--gray-50);
  color: var(--dark);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: var(--primary);
}
/* 通用容器样式 */
.img2txt-core-container,
.img2txt-feature-container,
.img2txt-scenarios-container,
.img2txt-steps-container,
.img2txt-customer-reviews-container,
.img2txt-applicable-population-container,
.img2txt-functional-advantages-container,
.img2txt-faq-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* 核心功能板块样式 */
.img2txt-core-feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #f0f9ff 0%, #f7f3ff 100%); */
  border-radius: var(--radius-xl);
  margin-top: 40px;
}

.img2txt-core-feature-text {
  width: 40%;
}

.img2txt-core-feature-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark);
}

.img2txt-core-feature-text p {
  font-size: 1rem;
  color: var(--gray-dark);
}

.img2txt-core-feature-image {
  width: 55%;
  position: relative;
}

.img2txt-core-feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1);
}

/* 装饰元素样式 */
.img2txt-core-decorative-bubble {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-color: var(--success-light);
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
}

.img2txt-core-decorative-circle {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--info-light);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

/* 功能展示区域样式 */
.img2txt-feature-section-title {
  text-align: center;
  margin-bottom: 64px;
  padding-top: 64px;
}

.img2txt-feature-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.img2txt-feature-gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img2txt-feature-subtitle {
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* 轮播容器 */
.img2txt-feature-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
}

.img2txt-feature-carousel-container {
  overflow: hidden;
}

.img2txt-feature-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* 功能卡片样式 */
.img2txt-feature-feature-card {
  min-width: 100%;
  padding: 16px;
}

@media (min-width: 768px) {
  .img2txt-feature-feature-card {
    min-width: 33.333%;
  }
}

.img2txt-feature-card-inner {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.img2txt-feature-card-image-container {
  background-color: #f3e8ff;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.img2txt-feature-card-image {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-sm);
}

.img2txt-feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.img2txt-feature-card-subtitle {
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.img2txt-feature-card-description {
  color: var(--gray-dark);
  flex-grow: 1;
}

/* 轮播控制按钮 */
.img2txt-feature-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.img2txt-feature-carousel-btn:hover {
  background-color: var(--primary);
  color: var(--light);
}

.img2txt-feature-prev-btn {
  left: 0;
}

.img2txt-feature-next-btn {
  right: 0;
}

.img2txt-feature-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  display: none;
}

/* 隐藏按钮样式 - PC端少于3个卡片时隐藏 */
.img2txt-feature-btn-hidden {
  display: none !important;
}

/* 移动端始终显示按钮 */
@media (max-width: 767px) {
  .img2txt-feature-btn-hidden {
    display: flex !important;
  }
}

/* 轮播指示器 */
.img2txt-feature-carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 8px;
}

.img2txt-feature-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: var(--gray-200);
  transition: background-color 0.3s ease;
}

.img2txt-feature-indicator.active {
  background-color: var(--primary);
}

/* 应用场景样式 */
.img2txt-scenarios-section-title {
  text-align: center;
  padding: 60px 0 40px;
}

.img2txt-scenarios-section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.img2txt-scenarios-section-title p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* 卡片容器 */
.img2txt-scenarios-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .img2txt-scenarios-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 卡片样式 */
.img2txt-scenarios-card {
  background-color: var(--light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
  transition: var(--transition);
}

.img2txt-scenarios-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.img2txt-scenarios-card-image {
  width: 100%;
  object-fit: cover;
}

.img2txt-scenarios-card-content {
  padding: 25px;
}

.img2txt-scenarios-card-divider {
  width: 48px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 16px;
}

.img2txt-scenarios-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.img2txt-scenarios-card-description {
  color: var(--gray-dark);
  line-height: 1.7;
}

/* 按钮样式 */
.img2txt-scenarios-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.img2txt-scenarios-btn:hover {
  background-color: var(--primary-light);
}

/* 使用步骤样式 */
.img2txt-steps-container {
  padding: 3rem 1rem;
}

.img2txt-steps-container h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.img2txt-steps-flex-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .img2txt-steps-flex-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.img2txt-steps-image-section {
  flex: 1;
  background-color: var(--light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.img2txt-steps-image-section:hover {
  box-shadow: var(--shadow-lg);
}

.img2txt-steps-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.img2txt-steps-step-image {
  display: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.img2txt-steps-step-image.active {
  display: block;
}

.img2txt-steps-steps-section {
  flex: 1;
}

.img2txt-steps-step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.img2txt-steps-step-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.img2txt-steps-step-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: var(--light);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.img2txt-steps-step-title:hover {
  box-shadow: var(--shadow);
}

.img2txt-steps-step-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.img2txt-steps-step-title i {
  color: var(--gray-medium);
  transition: transform 0.3s ease;
}

.img2txt-steps-step-description {
  background-color: var(--light);
  padding: 0 1.25rem 1rem;
  box-shadow: var(--shadow-sm);
  display: none;
}

.img2txt-steps-step-description.active {
  display: block;
}

.img2txt-steps-step-description p {
  color: var(--gray-medium);
  line-height: 1.6;
  padding-top: 0.5rem;
}

.img2txt-steps-upload-btn {
  margin-top: 2rem;
  background-color: var(--primary);
  color: var(--light);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}
.img2txt-steps-upload-btn a {
  color: var(--light);
  font-weight: 500;
  font-size: 20px;
}
.img2txt-steps-upload-btn:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.img2txt-steps-step-active {
  border-left: 4px solid var(--primary);
  padding-left: calc(1.25rem - 4px);
  margin-left: -4px;
}

.img2txt-steps-rotate-180 {
  transform: rotate(180deg);
}

/* 用户评价样式 */
.img2txt-customer-reviews-container {
  padding: 3rem 1rem;
}

.img2txt-customer-reviews-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.img2txt-customer-reviews-testimonial-container {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}

.img2txt-customer-reviews-testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .img2txt-customer-reviews-testimonial-content {
    flex-direction: row;
  }
}

.img2txt-customer-reviews-user-image {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid rgba(168, 85, 247, 0.2);
}

.img2txt-customer-reviews-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.img2txt-customer-reviews-testimonial-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .img2txt-customer-reviews-testimonial-text {
    text-align: left;
  }
}

.img2txt-customer-reviews-testimonial-quote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.img2txt-customer-reviews-user-name {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.img2txt-customer-reviews-user-role {
  color: rgba(31, 41, 55, 0.7);
}

.img2txt-customer-reviews-navigation-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.img2txt-customer-reviews-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.img2txt-customer-reviews-nav-btn:hover {
  transform: scale(1.1);
  background-color: var(--primary-light);
}

.img2txt-customer-reviews-opacity-0 {
  display: none;
}

/* 适用人群样式 */
.img2txt-applicable-population-container {
  padding: 2rem 1rem;
}

/* 标题样式 */
.img2txt-applicable-population-main-title {
  text-align: center;
  margin-bottom: 3rem;
}

.img2txt-applicable-population-main-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.img2txt-applicable-population-main-title p {
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Tab 容器样式 */
.img2txt-applicable-population-tab-container-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.img2txt-applicable-population-tab-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  box-shadow: var(--shadow);
  border: none;
  color: var(--primary);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 1;
}

.img2txt-applicable-population-tab-scroll-btn[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}

.img2txt-applicable-population-tab-scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--light);
}

.img2txt-applicable-population-tab-scroll-btn:not(:disabled):hover {
  background-color: rgba(168, 85, 247, 0.05);
}

#img2txt-applicable-population-scrollLeft {
  left: 0;
  transform: translate(-50%, -50%);
}

#img2txt-applicable-population-scrollRight {
  right: 0;
  transform: translate(50%, -50%);
}

@media (min-width: 768px) {
  #img2txt-applicable-population-scrollLeft {
    left: 0;
    transform: translate(-25%, -50%);
  }

  #img2txt-applicable-population-scrollRight {
    right: 0;
    transform: translate(25%, -50%);
  }
}

.img2txt-applicable-population-tab-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 1rem;
}

.img2txt-applicable-population-tab-wrapper::-webkit-scrollbar {
  display: none;
}

.img2txt-applicable-population-tab-buttons {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem;
  min-width: max-content;
}

.img2txt-applicable-population-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.img2txt-applicable-population-tab-btn i {
  font-size: 1.2rem;
}

.img2txt-applicable-population-tab-active {
  background-color: rgba(168, 85, 247, 0.1);
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 16px;
}

.img2txt-applicable-population-tab-inactive {
  color: var(--dark);
  border-color: var(--gray-200);
}

.img2txt-applicable-population-tab-inactive:hover {
  background-color: var(--gray-100);
}

/* 内容区域样式 */
.img2txt-applicable-population-tab-content {
  background-color: var(--light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.img2txt-applicable-population-tab-panel {
  display: none;
}

.img2txt-applicable-population-tab-panel.img2txt-applicable-population-tab-active {
  display: block;
}

.img2txt-applicable-population-panel-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 32px;
}

@media (min-width: 768px) {
  .img2txt-applicable-population-panel-content {
    flex-direction: row;
    align-items: center;
  }
}

.img2txt-applicable-population-panel-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

@media (min-width: 768px) {
  .img2txt-applicable-population-panel-image-container {
    flex: 1;
  }

  .img2txt-applicable-population-panel-text {
    flex: 2;
  }
}

.img2txt-applicable-population-panel-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.img2txt-applicable-population-panel-text p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.img2txt-applicable-population-feature-list {
  list-style: none;
}

.img2txt-applicable-population-feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.img2txt-applicable-population-feature-list li i {
  color: var(--primary);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

/* 图标样式 */
.img2txt-applicable-population-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* 功能优势样式 */
.img2txt-functional-advantages-features {
  padding: 60px 0;
}

.img2txt-functional-advantages-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.img2txt-functional-advantages-section-title h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.img2txt-functional-advantages-section-title p {
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.img2txt-functional-advantages-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.img2txt-functional-advantages-feature-card {
  background-color: var(--light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.img2txt-functional-advantages-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1);
}

.img2txt-functional-advantages-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.img2txt-functional-advantages-icon {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.img2txt-functional-advantages-icon svg {
  width: 100%;
  height: 100%;
}

.img2txt-functional-advantages-feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.img2txt-functional-advantages-feature-card p {
  color: var(--gray-medium);
}

/* FAQ样式 */
.img2txt-faq-container {
  padding: 4rem 1rem;
}

.img2txt-faq-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.img2txt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img2txt-faq-item {
  background-color: var(--light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.img2txt-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  text-align: left;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.img2txt-faq-question:hover {
  background-color: rgba(168, 85, 247, 0.03);
}

.img2txt-faq-question-text {
  transition: color 0.2s ease;
}

.img2txt-faq-question:hover .img2txt-faq-question-text {
  color: var(--primary);
}

.img2txt-faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

.img2txt-faq-icon.img2txt-faq-icon-rotate {
  transform: rotate(180deg);
}

.img2txt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.25rem;
  color: var(--gray-dark);
}

.img2txt-faq-answer.img2txt-faq-answer-active {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
  transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.img2txt-faq-answer.img2txt-faq-answer-active .img2txt-faq-question-text {
  color: var(--primary);
}

/* 自定义图标样式（替代FontAwesome） */
.img2txt-faq-icon.img2txt-faq-icon-chevron-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary);
}

/* 响应式样式 */
@media (max-width: 768px) {
  .img2txt-core-feature-section {
    flex-direction: column;
    text-align: center;
  }

  .img2txt-core-feature-text,
  .feature-image {
    width: 100%;
  }

  .img2txt-core-feature-text {
    margin-bottom: 40px;
  }

  .img2txt-core-feature-text h2 {
    font-size: 2rem;
  }
  .img2txt-core-feature-image {
    width: 100%;
  }
}
