* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background: url("../images/bg-1.jpg") no-repeat center center/cover;
  height: auto;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}

/* Mentor + Cards Section (Two Columns) */
.hero-bottom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Mentor Photo (Left Column) */
.mentor-column {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentor-image {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards Container (Right Column) */
.cards-column {
  flex: 1;
}

.cards-container {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 4px;
}

.card-date {
  font-size: 14px;
  font-weight: bold;
  color: #1a202c;
}

/* Workshop Button */
.workshop-button-container {
  width: 100%;
  margin-top: 20px;
}

.workshop-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.workshop-button:hover {
  background: linear-gradient(135deg, #6c55c2 0%, #bf378d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.mobile-cta-container a,
.workshop-button-container a {
  text-decoration: none;
  color: inherit;
}

.button-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.button-price {
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
}

/* Workshop Target Audience Section */
.workshop-section {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.workshop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.workshop-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 50px;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-columns {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.workshop-column {
  flex: 1;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.workshop-column:hover {
  border-color: #667eea;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.column-heading {
  font-size: 24px;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
}

.workshop-list-alt {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.workshop-list-alt .list-item {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  gap: 15px;
  border-bottom: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.workshop-list-alt .list-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.workshop-list-alt .list-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.workshop-list-alt .list-text {
  font-weight: 500;
}

/* Target Audience Section */
.target-audience-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.target-audience-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.target-audience-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}

.audience-icon {
  font-size: 40px;
  flex-shrink: 0;
  min-width: 50px;
}

.audience-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: white;
  flex: 1;
}

/* Mentor section  */
.mentor-section {
  padding: 40px 10px 0 10px;
  background-color: #f8fafc;
}

.mentor-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mentor-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 60px;
}

.mentor-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.mentor-text {
  flex: 1.2;
  padding: 50px;
}

.mentor-name {
  font-size: 32px;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mentor-title {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 25px;
  font-weight: 500;
}

.mentor-description {
  margin-bottom: 35px;
}

.mentor-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}

.mentor-image {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mentor-image img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}

.mobile-cta-section {
  /* display: none; */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid #515bd4;
  z-index: 1000;
  padding: 15px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-cta-container {
  max-width: 400px;
  margin: 0 auto;
}

.mobile-cta-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  font-family: inherit;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-cta-button:active {
  transform: translateY(0);
}

.mobile-button-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.mobile-button-price {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
}

/* As Seen In Section */
.as-seen-section {
  padding: 80px 20px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.as-seen-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 50px;
  position: relative;
}

.as-seen-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.as-seen-image {
  text-align: center;
  margin-bottom: 40px;
}

.as-seen-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.as-seen-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.as-seen-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.as-seen-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.as-seen-content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.as-seen-list {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}
.as-seen-list h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 20px;
  text-align: center;
}

/* Review Section  */
.reviews-section {
  padding: 40px 0;
  background: #f9f9f9;
}
.reviews-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #333;
}
.reviews-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 24px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}
.review-author {
  font-weight: bold;
  color: #007b7b;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f1f5f9;
  margin-bottom: 115px;
}

.terms {
  margin-top: 40px;
  font-size: 1rem;
  color: #383838;
  border: 1px solid #959595;
  padding: 20px 20px;
  border-radius: 12px;
}
.terms h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

/* Thank You Section */
.thank-you-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 40px 0;
}
.thank-you-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.6s ease-out;
}
.success-icon::before {
  content: "✓";
  font-size: 50px;
  color: white;
  font-weight: bold;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.5;
}
/* thank you page back to home >> link  */
.back-link {
  font-size: 18px;
  text-decoration: none;
  color: #007bff;
}

/* Webinar Details Card */
.webinar-details {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  margin: 40px 0;
  position: relative;
}

.webinar-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px 4px 0 0;
}

.details-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.detail-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: white;
}

.detail-label {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 5px;
}

.detail-value {
  font-size: 16px;
  font-weight: bold;
  color: #1a202c;
}

/* Next Steps Section */
.next-steps {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 35px;
  color: white;
  margin: 30px 0;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

.steps-list {
  list-style: none;
  padding: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.step-number {
  width: 30px;
  height: 30px;
  background: white;
  color: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

/* Important Notice */
.important-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.notice-icon {
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: white;
}

.notice-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #92400e;
  margin-bottom: 10px;
  text-align: center;
}

.notice-text {
  color: #92400e;
  text-align: center;
  line-height: 1.5;
}

/* Contact Support */
.support-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin: 30px 0;
}

.support-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 10px;
}

.support-text {
  color: #4a5568;
  margin-bottom: 15px;
}

.support-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Footer */
.thank-you-footer {
  text-align: center;
  padding: 20px 0;
  color: white;
  font-size: 14px;
}

/* Workshop Section Responsive */
@media (max-width: 1024px) {
  .hero-bottom {
    gap: 40px;
  }
  .as-seen-heading {
    font-size: 2.2rem;
  }
  .as-seen-content p {
    padding: 30px;
    font-size: 1.05rem;
  }
  .mentor-column {
    flex: 0 0 250px;
  }
  .mentor-image {
    width: 240px;
    height: 300px;
  }
  .workshop-heading {
    font-size: 28px;
  }
  .target-audience-heading {
    font-size: 32px;
  }

  .audience-grid {
    gap: 25px;
  }

  .audience-item {
    padding: 20px 15px;
    gap: 12px;
  }

  .audience-icon {
    font-size: 36px;
    min-width: 45px;
  }

  .audience-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .mentor-column {
    flex: 1 1 100%;
    width: 100%;
    align-items: center;
    margin-bottom: 0;
  }
  .mentor-image {
    width: 90vw;
    max-width: 400px;
    height: 320px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .cards-column {
    width: 100%;
  }
  .cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .as-seen-section {
    padding: 60px 15px;
  }

  .as-seen-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .as-seen-image {
    margin-bottom: 30px;
  }

  .as-seen-content p {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
  }
  .workshop-list-alt .list-item {
    padding: 18px;
    gap: 12px;
  }
  .workshop-list-alt .list-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 13px;
  }

  .workshop-section {
    margin-top: 60px;
    padding: 40px 20px;
  }
  .workshop-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .workshop-columns {
    flex-direction: column;
    gap: 30px;
  }
  .workshop-column {
    padding: 25px;
    margin: 0 10px;
  }
  .column-heading {
    font-size: 20px;
    margin-bottom: 20px;
    word-wrap: break-word;
  }
  .list-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .target-audience-section {
    margin-top: 15px;
    padding: 40px 20px;
  }

  .target-audience-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .audience-item {
    padding: 18px 15px;
    gap: 10px;
  }

  .audience-icon {
    font-size: 32px;
    min-width: 40px;
  }

  .audience-text {
    font-size: 14px;
    line-height: 1.3;
  }

  .mentor-section {
    margin-top: 60px;
    padding: 60px 20px;
  }

  .mentor-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .mentor-content {
    flex-direction: column;
    gap: 40px;
  }

  .mentor-text {
    padding-right: 0;
  }

  .mentor-name {
    font-size: 26px;
    text-align: center;
  }

  .mentor-title {
    text-align: center;
    font-size: 17px;
  }

  .mentor-description p {
    font-size: 15px;
  }
  .mobile-cta-section {
    display: block;
  }
  .mobile-cta-section {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
  }
  .mobile-cta-container {
    width: 90%;
    margin: 0 auto;
  }
  body {
    padding-bottom: 90px;
  }
  footer {
    margin-bottom: 8px;
  }

  .container {
    padding: 20px 0;
  }

  .thank-you-section {
    padding: 30px 20px;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-subtitle {
    font-size: 1.1rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .webinar-details,
  .next-steps,
  .important-notice,
  .support-section {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 0;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card {
    gap: 12px;
    padding: 15px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .card-title {
    font-size: 13px;
  }
  .card-date {
    font-size: 14px;
  }

  .workshop-button {
    padding: 15px;
  }

  .button-title {
    font-size: 14px;
  }

  .button-price {
    font-size: 20px;
  }
  .mentor-image {
    width: 220px;
    height: 280px;
    font-size: 16px;
  }

  .as-seen-section {
    padding: 40px 10px;
  }

  .as-seen-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .as-seen-image {
    margin-bottom: 25px;
  }

  .as-seen-content p {
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .workshop-list-alt .list-item {
    padding: 15px;
    gap: 10px;
  }

  .workshop-list-alt .list-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    font-size: 12px;
  }

  .workshop-section {
    padding: 30px 10px;
  }

  .workshop-container {
    padding: 0 5px;
  }

  .workshop-heading {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0 10px;
    line-height: 1.4;
  }

  .workshop-column {
    padding: 20px 15px;
    margin: 0 5px;
  }

  .column-heading {
    font-size: 16px;
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .list-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .target-audience-section {
    padding: 30px 15px;
  }

  .target-audience-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .audience-item {
    padding: 16px 15px;
    gap: 12px;
  }

  .audience-icon img {
    width: 35px;
    height: 35px;
  }

  .audience-text {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .mentor-section {
    padding: 40px 15px;
  }

  .mentor-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .mentor-content {
    gap: 30px;
  }

  .mentor-name {
    font-size: 22px;
  }

  .mentor-title {
    font-size: 16px;
  }

  .mentor-description p {
    font-size: 14px;
  }

  .mentor-credentials {
    padding: 20px;
  }
  .mentor-text {
    flex: 1.2;
    padding: 5px;
  }
  .mentor-image img {
    height: auto;
  }

  .mobile-cta-section {
    padding: 12px 15px;
  }

  .mobile-cta-button {
    padding: 14px 16px;
  }

  .mobile-button-title {
    font-size: 15px;
  }

  .mobile-button-price {
    font-size: 17px;
  }

  .mobile-button-title {
    font-size: 14px;
  }

  .mobile-button-price {
    font-size: 16px;
  }

  .thank-you-section {
    padding: 25px 15px;
  }

  .thank-you-title {
    font-size: 1.8rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon::before {
    font-size: 40px;
  }

  .details-title {
    font-size: 1.5rem;
  }

  .detail-item {
    padding: 15px;
  }

  .step-item {
    padding: 12px;
    gap: 10px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .step-text {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 20px;
  }
  .mentor-image {
    width: 180px;
    height: 220px;
  }
  .mentor-name {
    font-size: 18px;
  }
  .workshop-section {
    padding: 25px 5px;
  }
  .workshop-heading {
    font-size: 16px;
    padding: 0 5px;
  }

  .workshop-column {
    padding: 15px 12px;
    margin: 0 2px;
  }

  .column-heading {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .target-audience-heading {
    font-size: 20px;
  }

  .audience-item {
    padding: 15px 12px;
    gap: 10px;
  }

  .audience-icon {
    font-size: 26px;
    min-width: 32px;
  }

  .audience-text {
    font-size: 12px;
  }

  .mentor-name {
    font-size: 20px;
  }

  .mentor-title {
    font-size: 15px;
  }

  .placeholder-mentor-image {
    height: 250px;
    font-size: 14px;
  }

  .mentor-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card {
    padding: 15px;
  }
}
