.elementor-3785 .elementor-element.elementor-element-88e539e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3785 .elementor-element.elementor-element-42305b3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3785 .elementor-element.elementor-element-6a311ac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3785 .elementor-element.elementor-element-600343b > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-3785:not(.elementor-motion-effects-element-type-background), body.elementor-page-3785 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);}@media(max-width:1024px){.elementor-3785 .elementor-element.elementor-element-88e539e{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(max-width:767px){.elementor-3785 .elementor-element.elementor-element-88e539e{--padding-top:05px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3785 .elementor-element.elementor-element-42305b3{--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3785 .elementor-element.elementor-element-6a311ac{--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-27de637 *//* ===============================
   HERO SECTION
================================ */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 100px 100px;
}

.hero-content {
  max-width: 720px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Heading */
.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: #fff;
}

/* Text */
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 640px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 30px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 40px;
}

/* Primary */
.hero-btn.primary {
  background: #fff;
  color: #000;
}

.hero-btn.primary:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Outline */
.hero-btn.outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-btn.outline:hover {
  background: #fff;
  color: #000;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 100px 16px 80px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
    
    .hero-section {
         min-height: 50vh;
         padding: 0px 10px ;
    }
  .hero-content h1 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    font-size:10px;
  }
  .hero-container {
  
  padding: 60px 6px 70px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-83cdf50 *//* ===============================
   WORKSHOP CATEGORIES
================================ */

.workshops-section {
  background: #fff;
  padding: 80px 20px 40px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
}

.workshops-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.workshops-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.workshops-badge {
  border: 1px solid #000;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.workshops-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.workshops-header p {
  font-size: 18px;
  line-height: 1.6;
}

/* GRID */

.workshops-grid {
  display: grid;
  gap: 32px;
}

/* CARD */

.card {
  border: 1px solid #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Featured */

.card.featured {
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #000;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
}

/* IMAGE */

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* CONTENT */

.p-8 {
  padding: 28px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tag {
  border: 1px solid #000;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.duration {
  font-size: 14px;
  font-weight: 600;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LIST */

.card ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 24px;
}

.card li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* FOOTER */

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 14px;
  font-size: 13px;
}

.card-footer a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */

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

  .workshops-header h2 {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .workshops-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshops-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .workshops-section {
    padding: 50px 16px 30px 16px;
  }

  .workshops-header {
    margin-bottom: 40px;
  }

  .workshops-header h2 {
    font-size: 26px;
  }

  .workshops-header p {
    font-size: 14px;
  }

  .card img {
    height: 200px;
  }

  .p-8 {
    padding: 20px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p,
  .card li {
    font-size: 13px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-64a75ae *//* ===============================
   WORKSHOP CALENDAR
================================ */

.calendar-section {
  background: #f5f5f5;
  padding: 20px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
}

.calendar-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.calendar-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.calendar-badge {
  border: 1px solid #000;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.calendar-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.calendar-header p {
  font-size: 18px;
  line-height: 1.6;
}

/* GRID */

.calendar-grid {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */

.calendar-card {
  background: #fff;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
}

/* TOP */

.calendar-top {
  background: #000;
  color: #fff;
  padding: 24px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.level {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.month {
  font-size: 26px;
  font-weight: 600;
}

.calendar-top h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.date {
  font-size: 14px;
  opacity: 0.85;
}

/* BODY */

.calendar-body {
  padding: 24px;
}

.info-list {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 24px;
}

.info-list li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* FOOTER */

.calendar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 14px;
}

.status {
  font-size: 13px;
  font-weight: 600;
}

.status.success {
  color: #000;
}

.status.warning {
  color: #000;
}

/* BUTTONS */

.btn-primary {
  border: 1px solid #000;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
}

.btn-outline {
  border: 1px solid #000;
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  display: inline-block;
}

/* WAITLIST */

.calendar-waitlist {
  margin-top: 60px;
  text-align: center;
}

.calendar-waitlist p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* ===============================
   RESPONSIVE
================================ */

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

  .calendar-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .calendar-section {
    padding: 10px 16px;
  }

  .calendar-header {
    margin-bottom: 40px;
  }

  .calendar-header h2 {
    font-size: 26px;
  }

  .calendar-header p {
    font-size: 14px;
  }

  .calendar-top h3 {
    font-size: 18px;
  }

  .calendar-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5a2bcad *//* ===============================
   WORKSHOP INSTRUCTORS
================================ */

.instructors-section {
  background: #fff;
  padding: 80px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
}

.instructors-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.instructors-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.instructors-badge {
  border: 1px solid #000;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.instructors-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.instructors-header p {
  font-size: 18px;
  line-height: 1.6;
}

/* GRID */

.instructors-grid {
  display: grid;
  gap: 40px;
}

/* CARD */

.instructor-card {
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}

.instructor-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */

.instructor-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.role {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.instructor-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.focus {
  font-size: 13px;
  border-top: 1px solid #000;
  padding-top: 12px;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (min-width: 768px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructors-header h2 {
    font-size: 34px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .instructors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .instructors-section {
    padding: 70px 16px;
  }

  .instructors-header {
    margin-bottom: 40px;
  }

  .instructors-header h2 {
    font-size: 26px;
  }

  .instructors-header p {
    font-size: 14px;
  }

  .instructor-card p {
    font-size: 13px;
  }

  .focus {
    font-size: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ab88111 *//* ===============================
   BASE
================================ */
.ss-section {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
}

.ss-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 16px;
}

/* ===============================
   HEADER
================================ */
.ss-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.ss-badge {
  display: inline-block;
  border: 1px solid #fff;
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ss-header h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.ss-header p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

/* ===============================
   GRID
================================ */
.ss-grid {
  display: grid;
  gap: 28px;
}

/* ===============================
   IMAGE
================================ */
.ss-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

/* ===============================
   CONTENT
================================ */
.ss-content {
  max-width: 520px;
}

.ss-intro h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.ss-intro span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ===============================
   STEPS
================================ */
.ss-steps {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ss-step {
  display: flex;
  gap: 12px;
}

.ss-num {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ss-step h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.ss-step p {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.85;
}

/* ===============================
   QUOTE
================================ */
.ss-quote {
  border-left: 3px solid #fff;
  padding-left: 14px;
  margin-top: 18px;
}

.ss-quote p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.ss-quote footer {
  font-size: 11px;
  opacity: 0.7;
}

/* ===============================
   SMALL MOBILES (≤360px)
================================ */
@media (max-width: 360px) {
  .ss-container {
    padding: 48px 14px;
  }

  .ss-header h2 {
    font-size: 24px;
  }

  .ss-intro h3 {
    font-size: 20px;
  }
}

/* ===============================
   MOBILE LANDSCAPE
================================ */
@media (min-width: 480px) and (max-height: 430px) {
  .ss-container {
    padding: 40px 20px;
  }

  .ss-grid {
    gap: 24px;
  }
}

/* ===============================
   TABLET PORTRAIT
================================ */
@media (min-width: 768px) {
  .ss-container {
    padding: 40px 24px;
  }

  .ss-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .ss-header h2 {
    font-size: 34px;
  }

  .ss-header p {
    font-size: 15px;
  }
}

/* ===============================
   TABLET LANDSCAPE
================================ */
@media (min-width: 900px) {
  .ss-grid {
    gap: 48px;
  }
}

/* ===============================
   DESKTOP
================================ */
@media (min-width: 1024px) {
  .ss-container {
    padding: 60px 20px;
  }

  .ss-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }

  .ss-header h2 {
    font-size: 42px;
  }

  .ss-intro h3 {
    font-size: 28px;
  }

  .ss-step h4 {
    font-size: 16px;
  }

  .ss-step p {
    font-size: 14px;
  }
}

/* ===============================
   LARGE DESKTOP
================================ */
@media (min-width: 1400px) {
  .ss-container {
    max-width: 1280px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-55f0629 *//* ===============================
   BASE
================================ */
.bts-section {
  background: #f5f5f5;
  color: #000;
  font-family: system-ui, -apple-system, sans-serif;
}

.bts-container {
  max-width: 1200px;
  margin: auto;
  padding: 56px 16px;
}

/* ===============================
   HEADER
================================ */
.bts-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.bts-badge {
  display: inline-block;
  border: 1px solid #000;
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bts-header h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.bts-header p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

/* ===============================
   GRID
================================ */
.bts-grid {
  display: grid;
  gap: 12px;
}

/* ===============================
   ITEM
================================ */
.bts-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  background: #000;
}

.bts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bts-item:hover img {
  transform: scale(1.05);
}

/* ===============================
   FOOTER
================================ */
.bts-footer {
  text-align: center;
  margin-top: 32px;
}

.bts-footer p {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.75;
}

.bts-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.bts-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.bts-social a:hover {
  background: #333;
}

/* ===============================
   SMALL MOBILES (≤360px)
================================ */
@media (max-width: 360px) {
  .bts-container {
    padding: 30px 14px;
  }

  .bts-header h2 {
    font-size: 24px;
  }

  .bts-footer p {
    font-size: 12px;
  }
}

/* ===============================
   MOBILE LANDSCAPE
================================ */
@media (min-width: 480px) {
  .bts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ===============================
   TABLET PORTRAIT
================================ */
@media (min-width: 768px) {
  .bts-container {
    padding: 50px 24px;
  }

  .bts-header h2 {
    font-size: 34px;
  }

  .bts-header p {
    font-size: 15px;
  }

  .bts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* ===============================
   TABLET LANDSCAPE
================================ */
@media (min-width: 900px) {
  .bts-grid {
    gap: 22px;
  }
}

/* ===============================
   DESKTOP
================================ */
@media (min-width: 1024px) {
  .bts-container {
    padding: 60px 20px;
  }

  .bts-header h2 {
    font-size: 40px;
  }

  .bts-grid {
    gap: 26px;
  }
}

/* ===============================
   LARGE DESKTOP
================================ */
@media (min-width: 1400px) {
  .bts-container {
    max-width: 1280px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-600343b *//* ===============================
   WORKSHOP REQUIREMENTS
================================ */

.wrk-req-section {
  background: #fff;
  padding: 70px 16px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
}

.wrk-req-container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
.wrk-req-header {
  text-align: center;
  margin-bottom: 40px;
}

.wrk-req-badge {
  display: inline-block;
  border: 1px solid #000;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wrk-req-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.wrk-req-header p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
}

/* LIST */
.wrk-req-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.wrk-req-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid #000;
}

/* ICON – MINIMAL MARKER */


/* CONTENT */
.wrk-req-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.wrk-req-content ul {
  padding-left: 16px;
  margin: 0;
}

.wrk-req-content li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

/* FOOTER */
.wrk-req-footer {
  text-align: center;
  margin-top: 40px;
}

.wrk-req-footer p {
  font-size: 14px;
  margin-bottom: 14px;
}

.wrk-req-btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid #000;
  text-decoration: none;
  color: #fff;
  background: #000;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.wrk-req-btn:hover {
  background: #fff;
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */

/* Small mobiles */
@media (max-width: 360px) {
      .wrk-req-section {
    padding: 10px 20px;
  }
  .wrk-req-header h2 {
    font-size: 26px;
  }

  .wrk-req-content li {
    font-size: 13px;
  }
}

/* Tablets */
@media (min-width: 768px) {
  .wrk-req-section {
    padding: 50px 20px;
  }

  .wrk-req-header h2 {
    font-size: 38px;
  }

  .wrk-req-card {
    padding: 26px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .wrk-req-section {
    padding: 70px 20px;
  }

  .wrk-req-header h2 {
    font-size: 42px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5aa2cdc *//* ===============================
   CTA – CLEAN VERSION
================================ */

.cta-section-clean {
  background: #fff;
  padding: 48px 16px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #000;
}

.cta-container-clean {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.cta-title {
  font-size: 34px;
  margin-bottom: 12px;
}

/* Text */
.cta-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 28px;
  color: #333;
}

/* Buttons */
.cta-buttons-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-btn-primary,
.cta-btn-outline {
  padding: 14px 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.25s ease;
}

/* Primary */
.cta-btn-primary {
  background: #000;
  color: #fff;
}

.cta-btn-primary:hover {
  background: #fff;
  color: #000;
}

/* Outline */
.cta-btn-outline {
  background: transparent;
  color: #000;
}

.cta-btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Stats */
.cta-stats-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.cta-stats-clean strong {
  display: block;
  font-size: 26px;
  margin-bottom: 4px;
}

.cta-stats-clean span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

/* Small phones */
@media (max-width: 360px) {
  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 13px;
  }

  .cta-stats-clean strong {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cta-section-clean {
    padding: 10px 14px;
  }

  .cta-text {
    margin-bottom: 22px;
  }

  .cta-stats-clean {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Tablet */
@media (min-width: 768px) {
     .cta-section-clean {
    padding: 30px 24px;
  }
  .cta-buttons-clean {
    flex-direction: row;
  }

  .cta-title {
    font-size: 38px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .cta-section-clean {
    padding: 10px 24px;
  }

  .cta-title {
    font-size: 42px;
  }
}/* End custom CSS */