.elementor-26253 .elementor-element.elementor-element-9e93764 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-26253 .elementor-element.elementor-element-e571fce > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-9e93764 *//* Hero Container */
.showtime-hero-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  max-width: 1200px;
  margin: 0 auto 0px;
}

/* Brand Label */
.hero-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Main Title */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
  line-height: 1.25;
}

/* Subheadline */
.hero-subtext {
  font-size: 18px;
  color: #000000;
  max-width: 720px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

/* Primary Button */
.primary-btn {
  background: #C62828; /* Showtime Red */
  color: #ffffff;
  border: none;
}

/* Secondary Button */
.secondary-btn {
  border: 2px solid #C62828;
  color: #000000;
  background: transparent;
}

/* Hover Effects */
.primary-btn:hover,
.secondary-btn:hover {
  opacity: 0.9;
}

/* Note text */
.hero-note {
  font-size: 12px;
  color: #444444;
  max-width: 720px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e571fce *//* ABOUT PREP SECTION WITH IMAGE */
.showtime-about-prep {
  padding: 60px 20px;
  background: #ffffff;
}

.about-prep-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXT COLUMN */
.about-prep-text {
  max-width: 620px;
}

/* IMAGE COLUMN */
.about-prep-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 18px;

  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-prep-grid {
    grid-template-columns: 1fr;
  }

  .about-prep-image {
    min-height: 260px;
  }
}
/* ================================
   FIX FONT MISMATCH – ABOUT PREP
   ================================ */

/* Force section to inherit site font */
.showtime-about-prep,
.showtime-about-prep * {
  font-family: inherit;
}

/* Match eyebrow style to rest of page */
.about-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Match H2 style */
.about-title {
  font-size: 36px;        /* same visual size as other H2s */
  font-weight: 800;
  line-height: 1.25;
}

/* Match paragraph style */
.about-text {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

/* Mobile typography match */
@media (max-width: 767px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }
}
/* Add comfortable spacing between paragraphs */
.about-text {
  margin-bottom: 22px; /* controls space between paragraphs */
}

/* Remove extra space after the last paragraph */
.about-text:last-child {
  margin-bottom: 0;
}
.about-text strong {
  font-weight: 700;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3f4bd01 *//* SECTION WRAPPER */
.showtime-benefits {
  padding: 40px 20px;
  text-align: center;
}

/* TITLE */
.showtime-benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 45px;
}

/* GRID */
.showtime-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 boxes per row */
  gap: 28px;
  max-width: 1100px; /* tighter for balance */
  margin: 0 auto;
}
/* Tablet: 2 per row */
@media (max-width: 1024px) {
  .showtime-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 640px) {
  .showtime-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* BOX */
.showtime-benefit-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.showtime-benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border-color: rgba(198,40,40,0.35); /* Showtime red tint */
}

/* ICON CIRCLE */
.showtime-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #C62828; /* Showtime Red */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.showtime-icon-wrap i {
  color: #ffffff;
  font-size: 22px;
}

/* HEADINGS + TEXT */
.showtime-benefit-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
}

.showtime-benefit-box p {
  font-size: 15px;
  line-height: 1.65;
  color: #222222;
  margin: 0;
}

/* MOBILE TWEAKS */
@media (max-width: 767px) {
  .showtime-benefits-title {
    font-size: 26px;
  }

  .showtime-benefit-box {
    padding: 26px 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bacee5c *//* SECTION WRAPPER */
.showtime-how-it-works {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

/* EYEBROW TEXT */
.how-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 500;
}

/* SECTION TITLE */
.how-title {
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 45px;
  line-height: 1.25;
}

/* STEPS GRID */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* STEP BOX */
.how-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* STEP NUMBER */
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #C62828; /* Showtime Red */
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* STEP HEADING */
.how-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

/* STEP TEXT */
.how-step p {
  font-size: 15px;
  line-height: 1.65;
  color: #222222;
  margin: 0;
}

/* MOBILE TWEAKS */
@media (max-width: 767px) {
  .showtime-how-it-works {
    padding: 45px 16px;
  }

  .how-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a0eccd *//* SECTION WRAPPER */
.showtime-who-its-for {
  padding: 0px 20px;
  background: #ffffff;
}

/* INNER LAYOUT */
.who-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 30px;
  align-items: start;
}

/* EYEBROW */
.who-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 500;
}

/* TITLE */
.who-title {
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.25;
}

/* INTRO TEXT */
.who-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  margin-bottom: 22px;
  max-width: 820px;
}

/* LIST */
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.who-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* CHECK MARK */
.who-check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #C62828; /* Showtime Red */
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  margin-top: 2px;
}

/* RIGHT CARD */
.who-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.who-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #222222;
  margin: 0 0 16px;
}

/* CTA BUTTON */
.who-cta {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  background: #C62828; /* Showtime Red */
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  margin-top: 4px;
}

.who-cta:hover {
  opacity: 0.9;
}

/* NOTE */
.who-note {
  font-size: 12px;
  color: #444444;
  margin-top: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .who-inner {
    grid-template-columns: 1fr;
  }

  .who-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-95e0593 *//* SECTION WRAPPER */
.showtime-trust {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

/* INNER WIDTH */
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* EYEBROW */
.trust-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 500;
}

/* TITLE */
.trust-title {
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.25;
}

/* INTRO TEXT */
.trust-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  max-width: 850px;
  margin: 0 auto 35px;
}

/* TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 0 auto 30px;
}

/* TRUST BOXES */
.trust-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
}

/* RED ACCENT LINE */
.trust-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #C62828; /* Showtime Red */
  border-radius: 16px 16px 0 0;
}

.trust-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 10px 0 10px;
}

.trust-box p {
  font-size: 15px;
  line-height: 1.65;
  color: #222222;
  margin: 0;
}

/* FOOTER AREA */
.trust-footer {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* NOTE */
.trust-note {
  font-size: 12px;
  color: #444444;
  margin: 0;
}

/* CTA BUTTON */
.trust-cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  background: #C62828; /* Showtime Red */
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.trust-cta:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 767px) {
  .showtime-trust {
    padding: 45px 16px;
  }

  .trust-title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4f400e0 *//* SECTION WRAPPER */
.showtime-final-cta {
  padding: 70px 20px;
  background: #0b0b0b; /* near-black */
  text-align: center;
}

/* INNER CONTAINER */
.final-cta-inner {
  max-width: 1050px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 55px 35px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.08);
}

/* EYEBROW */
.final-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TITLE */
.final-title {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* TEXT */
.final-text {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  max-width: 820px;
  margin: 0 auto 28px;
}

/* BUTTON GROUP */
.final-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* BUTTON BASE */
.final-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* PRIMARY BUTTON */
.final-btn.primary {
  background: #C62828; /* Showtime Red */
  color: #ffffff;
}

/* SECONDARY BUTTON */
.final-btn.secondary {
  background: transparent;
  border-color: #C62828;
  color: #000000;
}

/* HOVER */
.final-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* NOTE */
.final-note {
  font-size: 12px;
  color: #444444;
  margin: 0;
}

/* MOBILE */
@media (max-width: 767px) {
  .showtime-final-cta {
    padding: 50px 16px;
  }

  .final-cta-inner {
    padding: 40px 18px;
  }

  .final-title {
    font-size: 28px;
  }

  .final-btn {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */