:root {
  --color-primary: rgba(25, 82, 134, 1);
  --color-pink: rgb(160, 6, 117);
  --color-green: rgba(161, 201, 62, 1);
  --color-green-solid: rgb(161, 201, 63);
  --color-text: rgba(35, 73, 89, 1);
  --color-dark: rgba(28, 35, 45, 1);
  --color-grey: rgb(84, 84, 84);
  --color-light-grey: rgba(241, 241, 241, 0.97);
  --color-white: rgba(255, 255, 255, 1);
  --color-bg-warm: rgba(238, 233, 230, 1);
  --font-poppins: 'Poppins', sans-serif;
  --font-lato: 'Lato', sans-serif;
  --font-raleway: 'Raleway', sans-serif;
  --font-opensans: 'Open Sans', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-josefin: 'Josefin Sans', sans-serif;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  font-family: var(--font-opensans);
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  background-color: var(--color-white);
}

*, *:before, *:after {
  box-sizing: inherit;
}

a { text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: normal; }
section h1 { margin: 0; }
button, input { margin: 0; font-family: unset; }
ul { margin: 0; list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================================
   GOOGLE FONTS IMPORTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Lato:ital,wght@0,400;0,700;1,400&family=Raleway:wght@400;700&family=Open+Sans:wght@400;600;700&family=Montserrat:wght@200;300;400;600;700&family=Josefin+Sans:wght@400&display=swap');

/* =========================================================
   LAYOUT WRAPPERS
   ========================================================= */
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.container-full  { max-width: 100%; width: 100%; margin: auto; }
.container-wide  { max-width: 1120px; width: 100%; margin: auto; }
.container-medium{ max-width: 960px; width: 100%; margin: auto; }
.container-small { max-width: 720px; width: 100%; margin: auto; }

.section-row {
  display: grid;
  position: relative;
  justify-content: space-between;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
   align-items: center;
}

@media only screen and (max-width: 800px) {
  .section-row {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    column-gap: 0;
  }
  .container-wide,
  .container-medium,
  .container-small { max-width: 100%; }
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: relative;
  padding: 10px 40px;
  background: var(--color-white);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

.site-logo img {
  width: 177px;
  display: block;
}

/* Desktop nav */
.main-navigation { display: flex; align-items: center; }

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation ul li a {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-raleway);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.main-navigation ul li a:hover {
  color: var(--color-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
  color: var(--color-pink);
}

/* Mobile burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 33px;
  height: 4px;
  border-radius: 3px;
  background-color: var(--color-pink);
  transition: all 0.3s;
}

/* Mobile side menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background-color: var(--color-white);
  overflow-y: auto;
  z-index: 200;
  transition: width 0.2s ease-in-out;
  flex-direction: column;
}

.mobile-menu.open { width: 280px; display: flex; }

.mobile-menu ul {
  margin-top: 45px;
  padding: 10px;
  list-style: none;
}

.mobile-menu ul li { margin-bottom: 20px; }

.mobile-menu ul li a {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-raleway);
  font-weight: 400;
  line-height: 32px;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}

.menu-overlay.open { display: block; }

@media only screen and (max-width: 800px) {
  .site-header { padding: 5px 15px; }
  .site-logo img { width: 165px; }
  .main-navigation ul { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   HERO SECTION (Home)
   ========================================================= */
.hero-section {
  position: relative;
  background-size: contain;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 0 40px;
  max-width: 100%;
}

.hero-name {
  font-size: 61px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 700;
  text-align: center;
  line-height: 113px;
  padding: 50px 20px 30px;
}

.hero-headline {
  font-size: 35px;
  color: var(--color-primary);
  font-family: var(--font-lato);
  font-weight: 700;
  text-align: center;
  line-height: 48px;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--color-primary);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 38.4px;
  margin-top: 32px;
}

.hero-cta-wrap {
    margin: 67px 0 0 130px;
}

.btn-hero {
  display: inline-block;
  background: var(--color-green);
  color: rgba(244, 239, 235, 1);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 35px;
  padding: 20px 65px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 30px;
  transition: background 0.3s;
}

.btn-hero:hover { background: var(--color-pink); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .hero-name { font-size: 53px; line-height: 57px; padding: 0; }
  .hero-headline { font-size: 35px; line-height: 36px; color: var(--color-white); }
  .hero-subheadline { font-size: 20px; line-height: 28.8px; color: var(--color-white); padding-top: 15px; }
  .hero-cta-wrap { margin: 41px 0 126px; }
  .btn-hero { font-size: 18px; padding: 10px 20px; width: 100%; text-align: center; }
  .hero-content { padding: 0 20px; }
}

/* =========================================================
   APPROACH SECTION
   ========================================================= */
.approach-section {
  background: var(--color-green);
  padding: 50px 40px;
}

@media only screen and (max-width: 800px) {
  .approach-section {
    background: var(--color-pink);
    padding: 20px;
  }
}

.approach-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.approach-image img {
  width: 200px;
  border-radius: 2px;
}

.approach-subheadline {
  font-size: 26px;
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 38.4px;
  padding: 29px 0;
}

.approach-text {
  font-size: 20px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
}

/* =========================================================
   MY APPROACH (White section with content)
   ========================================================= */
.my-approach-section { padding: 40px; }

.section-heading-pink {
  font-size: 40px;
  color: var(--color-pink);
  font-family: var(--font-raleway);
  font-weight: 400;
  text-align: center;
  line-height: 75px;
  margin: 20px 0 50px;
}

.approach-highlight {
  font-size: 25px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 60px;
  padding: 0 50px;
  background: var(--color-green);
}

.approach-body {
  font-size: 25px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 40px;
  padding: 30px 100px;
}

.approach-footer-text {
  font-size: 25px;
  color: rgb(84,84,84);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 40px;
  padding: 0 50px;
  background: var(--color-white);
}

hr.section-divider {
  border: none;
  border-top: 1px solid var(--color-green-solid);
}

@media only screen and (max-width: 800px) {
  .section-heading-pink { font-size: 20px; line-height: 43px; font-family: var(--font-poppins); font-weight: 500; }
  .approach-highlight { padding: 0; font-size: 18px; line-height: 23px; }
  .approach-body { padding: 0; font-size: 15px; line-height: 20px; }
}

/* =========================================================
   TESTIMONIALS / CAROUSEL
   ========================================================= */
.testimonials-section {
  background: var(--color-pink);
  padding: 20px 40px;
}

.testimonials-heading {
  font-size: 30px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 38.4px;
  padding: 10px 0 15px;
  font-style: italic;
}

.testimonials-heading em strong { font-weight: bold; }

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 20px 0;
}

.testimonial-text {
  font-size: 20px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-opensans);
  font-weight: 400;
  text-align: center;
  line-height: 30px;
  padding: 0 300px;
}

.testimonial-author {
  color: rgba(241, 241, 241, 0.97);
  font-style: italic;
  font-weight: bold;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid #fff;
  padding: 0;
}

.carousel-dot.active { background: var(--color-white); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
}

.carousel-arrow.next { right: 15px; }
.carousel-arrow.prev { left: 15px; }

@media only screen and (max-width: 800px) {
  .testimonial-text { padding: 0; font-size: 16px; line-height: 24px; }
  .testimonials-section { padding: 5px; }
  .carousel-arrow { display: none; }
}

/* =========================================================
   UPCOMING EVENTS (Home section)
   ========================================================= */
.upcoming-events-section {
    padding: 40px 0px 70px 0px;
}

.section-heading-large {
  font-size: 50px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 100px;
}

.events-intro {
  font-size: 20px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
  padding: 0 20px;
  margin: 15px 0 50px;
}

.btn-check {
  display: inline-block;
  background: rgba(161, 201, 48, 0.85);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 20px;
  padding: 21px 70px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 30px;
  transition: background 0.3s;
}

.btn-check:hover { background: var(--color-primary); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .section-heading-large { font-size: 20px; line-height: 32px; }
  .btn-check { width: 100%; display: block; text-align: center; padding: 5px 15px; font-size: 16px; }
}

/* =========================================================
   NEWSLETTER / CHECKLIST SECTION
   ========================================================= */
.newsletter-section {
  padding: 38px 40px 17px;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
}

.newsletter-box-inner { padding: 13px 20px; }

.newsletter-title {
  font-size: 23px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
}

.newsletter-subtitle {
  font-size: 18px;
  color: var(--color-primary);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 42px;
  margin-top: 16px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid rgba(176, 186, 202, 1);
  border-radius: 5px;
  font-size: 16px;
  background: var(--color-white);
  margin: 14px 0px;
  outline: none;
}

.newsletter-form input[type="email"]{margin-bottom: 0px;}

.newsletter-form input[type="checkbox"] {
  margin-right: 8px;
}

.newsletter-checkbox-label {
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  text-align: left;
  line-height: 19px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.btn-submit {
  background: rgba(161, 201, 48, 0.85);
  color: var(--color-white);
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 20px;
  padding: 9px 45px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  line-height: 30px;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover { background: var(--color-pink); }

@media only screen and (max-width: 800px) {
  .newsletter-section { padding: 20px 10px; background-size: cover; background-attachment: fixed; }
  .newsletter-title { font-size: 18px; line-height: 26px; }
  .newsletter-subtitle { font-size: 14px; line-height: 50px; }
  .btn-submit { font-size: 15px; padding: 8px 5px; }
}

/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */
.solutions-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 10px 40px 150px;
  min-height: 331px;
}

.solutions-hero-title {
  font-size: 35px;
  color: var(--color-pink);
  font-family: var(--font-raleway);
  font-weight: 700;
  text-align: center;
  line-height: 35.6px;
  margin: 70px -220px 15px 60px;
}

.solutions-banner {
  background: var(--color-pink);
  padding: 20px 40px;
}

.solutions-banner-text {
  font-size: 21px;
  color: var(--color-white);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 40px;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 216, 103, 1);
  color: var(--color-white);
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 20px;
  padding: 15px 25px;
  border-radius: 3px;
  border: 3px solid rgba(1, 77, 130, 0);
  border-bottom-width: 3px;
  cursor: pointer;
  text-decoration: none;
  line-height: 17px;
  transition: background 0.3s;
  margin: 10px 10px 0;
}

.btn-start:hover { background: var(--color-primary); color: var(--color-white); }

/* Solutions Cards */
.solutions-cards-section {
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(190, 211, 195, 1);
  padding: 30px 25px;
  text-align: center;
}

.solution-card-title {
  font-size: 20px;
  color: rgba(160, 23, 123, 1);
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 33.6px;
  margin-bottom: 15px;
  font-weight: bold;
}

.solution-card img {
  max-width: 253px;
  margin: 0 auto 15px;
}

.solution-card-badge {
  font-size: 16px;
  color: rgba(160, 23, 123, 1);
  font-family: var(--font-montserrat);
  text-align: center;
  line-height: 23px;
  background: rgba(161, 201, 48, 0.3);
  padding: 4px 0;
  margin-bottom: 15px;
}

.solution-card-desc {
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--font-montserrat);
  text-align: center;
  line-height: 25px;
  margin-bottom: 15px;
  min-height: 75px;
}

.btn-solution {
  display: block;
  width: 100%;
  background: rgba(160, 23, 123, 1);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 26px;
  text-align: center;
  transition: background 0.3s;
}

.btn-solution:hover { background: var(--color-primary); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .solutions-hero { padding: 5px 5px 90px; }
  .solutions-hero-title { font-size: 22px; line-height: 26.4px; margin: 80px 0 0; }
  .solutions-cards-section { padding: 25px 15px 30px; }
  .btn-start { width: 100%; display: flex; justify-content: center; padding: 5px 5px; font-size: 20px; margin: 15px 0; }
}

/* =========================================================
   EVENTS PAGE
   ========================================================= */
.events-hero {
  background: var(--color-pink);
  padding: 90px 40px 180px;
}

.events-hero-title {
  font-size: 85px;
  color: rgba(246, 246, 246, 1);
  font-family: var(--font-josefin);
  font-weight: 400;
  text-align: center;
  line-height: 90px;
  margin-bottom: 30px;
}

.events-content {
  background: rgba(243, 243, 243, 1);
  padding: 0 40px 30px;
}

.events-content-inner {
  background: var(--color-white);
  padding: 90px 90px 120px;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  margin-top: -90px;
}

.events-coming-soon {
  font-size: 20px;
  color: var(--color-green-solid);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 60px;
}

/* Dynamic events loop */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: var(--color-white);
  border: 1px solid rgba(190, 211, 195, 1);
  padding: 20px;
  border-radius: 4px;
}

.event-card-title {
  font-size: 22px;
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 500;
  margin-bottom: 10px;
}

.event-card-meta {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 15px;
}

.event-card-excerpt {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-event {
  display: inline-block;
  background: var(--color-pink);
  color: var(--color-white);
  padding: 10px 25px;
  font-size: 14px;
  font-family: var(--font-opensans);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s;
}

.btn-event:hover { background: var(--color-primary); color: var(--color-white); }

@media only screen and (max-width: 800px) {
  .events-hero { padding: 45px 30px 45px; }
  .events-hero-title { font-size: 45px; line-height: 60px; }
  .events-content { padding: 0; }
  .events-content-inner { padding: 45px 30px; margin-top: 0; }
  .events-grid { grid-template-columns: 1fr; }
}



/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-welcome {
  background: var(--color-pink);
  padding: -30px 40px 20px;
}

.about-welcome-title {
  font-size: 42px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 55px;
  margin-bottom: 40px;
  font-weight: bold;
}

.about-welcome-text {
  font-size: 22px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 35px;
  margin-bottom: 30px;
}

.about-quote-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 40px;
}

.about-quote {
  font-size: 37px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-quote-author {
  font-size: 20px;
  color: var(--color-white);
  font-family: var(--font-lato);
  text-align: center;
  font-style: italic;
}

.about-author-section { padding: 80px 40px; }

.about-author-label {
  font-size: 31px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 400;
  text-align: center;
  line-height: 39px;
  font-weight: bold;
  margin-bottom: 0;
}

.about-author-photo img {
  width: 353px;
  max-width: 100%;
  margin: 0 auto 15px;
}

.about-author-name {
  font-size: 32px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 38.4px;
  font-weight: bold;
  margin: 15px 0;
}

.about-author-bio {
  font-size: 20px;
  color: var(--color-grey);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 25px;
  margin: 20px 0;
}

@media only screen and (max-width: 800px) {
  .about-welcome-title { font-size: 35px; line-height: 56px; }
  .about-welcome-text { font-size: 15px; line-height: 21px; }
  .about-quote { font-size: 25px; line-height: 33px; }
  .about-author-section { padding: 40px 15px 120px; }
  .about-author-photo img { width: 200px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section {
  background: rgb(84, 84, 84);
  padding: 40px;
}

.contact-form-wrapper {
  background: var(--color-green-solid);
  padding: 10px;
}

.contact-form-inner {
  max-width: 600px;
  margin: 0 240px;
}

.contact-title {
  font-size: 40px;
  color: var(--color-pink);
  font-family: var(--font-lato);
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin: 54px 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
    outline: none;
    text-indent: 10px;
    text-align: left;
    appearance: none;
    font-size: 16px;
    font-family: "Open Sans";
    padding: 12px 0px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-color: rgb(255, 255, 255);
    line-height: 20px;
}
.newsletter-form p{margin-bottom: 0px !important;}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder{color: rgba(0,0,0,0.6);}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(27, 26, 23, 1);
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}
/* 
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
} */

.btn-contact {
  background: var(--color-pink);
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 25px;
  padding: 15px 70px;
  border-radius: 1px;
  border: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn-contact:hover { background: var(--color-primary); }

@media only screen and (max-width: 800px) {
  .contact-section { padding: 0; background: transparent; }
  .contact-form-inner { margin: 0; }
  .contact-title { font-size: 30px; line-height: 36px; margin: 45px 0 33px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .btn-contact { width: 100%; font-size: 22px; padding: 10px; margin: 11px 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-pink);
  padding: 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 331px;
  margin: 0 auto 20px;
  box-shadow: none;
}

.footer-about {
  font-size: 16px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 24px;
  margin-bottom: 20px;
}

.footer-about strong { font-weight: bold; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column-title {
  font-size: 18px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  font-weight: bold;
  text-align: center;
  line-height: 42px;
  margin-bottom: 5px;
}

.footer-links li { margin-bottom: 3px; }

.footer-links a {
  font-size: 15px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-decoration: none;
  text-align: center;
  display: block;
  line-height: 24px;
}

.footer-links a:hover { text-decoration: underline; }

.footer-contact-info {
  font-size: 15px;
  color: rgba(246, 246, 246, 0.97);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 24px;
}

.footer-contact-info a { color: var(--color-green-solid); text-decoration: none; }
.footer-contact-info a:hover { text-decoration: underline; }

.footer-legal {
  text-align: center;
  margin: 20px 0 10px;
}

.wpcf7-response-output {
    margin: 0px !important;
}

 .ZZii_0xdazPEc5X7l3cZ{display: none !important;} 

 .DBKEjqt4IKCsNgnjbfTn.rc3MbSIPzTjjHS6aAm5W {
    max-width: 100% !important;
    display: flex;
    position: relative;
}
.sXXtx0Zd4r8HbkLP829M.MV81nyg4vzBe3AvHOx8x {
    width: 50% !important;
}

.single_blg,.snglpstmain{padding: 0px 15px;}




.footer-legal a {
  font-size: 15px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-opensans);
  text-decoration: none;
}

.footer-legal a:hover { text-decoration: underline; }

.footer-legal .separator { color: rgba(241, 241, 241, 0.97); margin: 0 5px; }

.footer-copyright {
  font-size: 15px;
  color: var(--color-white);
  font-family: var(--font-opensans);
  text-align: center;
  line-height: 30px;
}

/* Newsletter footer section */
.footer-newsletter-section {
  background: var(--color-pink);
  padding: 40px;
}

.footer-newsletter-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-newsletter-title {
  font-size: 32px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  font-weight: bold;
  font-style: italic;
  text-align: center;
  line-height: 38.4px;
  margin-bottom: 10px;
}

.footer-newsletter-text {
  font-size: 20px;
  color: rgba(241, 241, 241, 0.97);
  font-family: var(--font-lato);
  text-align: center;
  line-height: 30px;
  margin-bottom: 25px;
}

.footer-subscribe-form { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }

.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  font-family: var(--font-lato);
  outline: none;
}

.btn-subscribe {
  background: var(--color-green-solid);
  color: var(--color-white);
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 20px;
  padding: 15px 90px;
  border: 3px solid transparent;
  border-bottom-color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.btn-subscribe:hover { background: var(--color-primary); }

@media only screen and (max-width: 800px) {
  .site-footer { padding: 0; }
  .footer-inner { padding: 15px; }
  .footer-columns { grid-template-columns: 1fr; gap: 15px; }
  .footer-logo img { max-width: 192px; }
  .footer-newsletter-section { padding: 5px; }
  .footer-subscribe-form { flex-direction: column; }
  .btn-subscribe { width: 100%; padding: 5px; font-size: 20px; }
}

/* =========================================================
   PAGE TEMPLATES - GENERIC
   ========================================================= */
.page-content-wrapper {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-title {
  font-size: 42px;
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-content {
  font-size: 18px;
  color: var(--color-text);
  font-family: var(--font-opensans);
  line-height: 1.8;
}

/* =========================================================
   POPUP MODAL
   ========================================================= */
.popup-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active { display: flex; }

.popup-box {
  background: var(--color-green-solid);
  border: 3px solid var(--color-primary);
  border-radius: 6px;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  position: relative;
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  right: 15px; top: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px; height: 30px;
  font-size: 20px;
  color: var(--color-primary);
}

.popup-title {
  font-size: 32px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-raleway);
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  margin-bottom: 10px;
}

.popup-subtitle {
  font-size: 20px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-opensans);
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  margin-bottom: 15px;
}

.popup-form input[type="email"],
.popup-form input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(176, 186, 202, 1);
  border-radius: 5px;
  font-size: 15px;
  background: var(--color-white);
  margin-bottom: 10px;
  font-family: var(--font-lato);
  outline: none;
}

.popup-note {
  font-size: 15px;
  color: rgba(39, 51, 41, 1);
  font-family: var(--font-opensans);
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.btn-popup-register {
  width: 100%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 24px;
  padding: 6px 100px 7px;
  border: none;
  cursor: pointer;
  line-height: 24px;
  transition: background 0.3s;
  margin-top: 15px;
}

.btn-popup-register:hover { background: var(--color-primary); }

/* =========================================================
   SOS RESET KIT POPUP (Home popup)
   ========================================================= */
.popup-sos-title {
  font-size: 18px;
  color: var(--color-pink);
  font-family: var(--font-poppins);
  font-weight: 400;
  text-align: center;
  line-height: 27.4px;
  margin-bottom: 15px;
}

.btn-popup-start {
  width: 100%;
  background: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 24px;
  padding: 15px 100px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  margin-top: 15px;
}

.btn-popup-start:hover { background: var(--color-primary); color: var(--color-white); }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.text-pink { color: var(--color-pink); }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-green { color: var(--color-green); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* =========================================================
   WORDPRESS CORE CLASSES
   ========================================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--color-grey); text-align: center; margin-top: 5px; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-image { margin: 20px 0; }
.has-text-align-center { text-align: center; }

.lp-carousel {margin: 0 auto;}
.lp-carousel__slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}
.lp-carousel__slide img{width: 370px !important;}
.lp-checklist li{margin-bottom: 7px !important;}

.lp-carousel__btn{background: transparent !important;font-size: 62px !important;}
.lp-helps__inner{align-items: center !important;}
.lp-what{padding: 100px 40px !important;}

.lp-contentbox-section__inner{display: flex;justify-content: space-between;}
.lp-img-bx{width: 35%;}

.lp-cta .btn-cta{display: inline-block;width: fit-content;margin: 0 auto;}

.tilly-articles-section .tilly-article-tags a{color: rgb(161, 201, 63);text-decoration: none;}




/*Contact*/

.contact-section {
  padding: 40px 20px;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-section > div {
  max-width: 1120px;
  margin: 0 auto;
}

/* Main form container */
.contact-form-wrapper > div > div {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* Title */
.contact-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

/* Form */
.contact-form {
  width: 100%;
}

/* Row (Name + Email) */
.contact-form-row p{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  width: 100%;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Textarea */
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 15px;
}

/* Button */
.btn-contact {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}


/* CF7 Response Output */
.wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    border-radius: 3px;
    font-family: var(--font-lato);
    font-size: 16px;
    text-align: center;
    border: none !important;
    /* REMOVED display:none — CF7 handles show/hide itself via aria-hidden */
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #e6f4ea;
    color: #2d6a4f;
    border: none !important;
}

.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-acceptance-missing {
    background-color: #fdecea;
    color: #c0392b;
    border: none !important;
}

.bsearch-card{border-top: none !important;}
.bsearch-card-title{text-decoration: none !important;}
.bsearch-dd-excerpt{color: gray !important;}
.bsearch-dd-title mark, .bsearch-dd-excerpt mark {
    color: black !important;
    background: yellow !important;
}
.bsearch-dd-title{font-weight: 400 !important;}

input#bsearchInput:focus {
    border: 1px solid rgb(37, 99, 235);
    box-shadow: rgba(59, 130, 246, 0.25) 0px 0px 0px 4px;
    outline: none;
}

.bsearch-input {padding: 10px 40px 10px 10px !important;}
.bsearch-form-wrap {
    margin-bottom: 100px !important;
}

.newsletter-checkbox-label .wpcf7-list-item {margin-left: 0px;}
.newsletter-checkbox-label .wpcf7-list-item label{display: flex;gap: 10px;}
.newsletter-checkbox-label .wpcf7-list-item label input{width: 15px !important;}


/* ═══════════════════════════════════════════════
   SECTION 1 — WHITE TOP
═══════════════════════════════════════════════ */

.sos-hero{height: 100vh !important;}
.sos-top-section {
    background-color: #ffffff;
    padding: 24px 40px 80px 40px;
    display: flex;
    justify-content: center;
}
.sos-top-inner {
    max-width: 1120px;
    width: 100%;
    text-align: center;
}
.sos-checkout-label {
    color: #a1c93f;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    line-height: 26px;
    margin-top: 60px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.sos-almost-there {
    font-family: 'Lato', sans-serif;
    font-size: 70px;
    color: #a00675;
    font-weight: 400;
    text-align: center;
    line-height: 70px;
    margin-bottom: 18px;
}
.sos-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 400;
    text-align: center;
    line-height: 32px;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 45px;
}

/* ═══════════════════════════════════════════════
   SECTION 2 — MAGENTA BOTTOM
═══════════════════════════════════════════════ */
.sos-bottom-section {
    background-color: #a00675;
    padding: 80px 40px 40px 40px;
    display: flex;
    justify-content: center;
}
.sos-bottom-inner {
    max-width: 1120px;
    width: 100%;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 0;
}

.sos-grounding {
    background: url(https://staging.breakupcoachtilly.com/wp-content/themes/tilly-theme/assets/images/sos-grounding-bg.png) no-repeat center !important;
    padding: 200px 40px;
    text-align: center;
    background-size: cover !important;
}
.sos-how__card-text{margin-bottom: 0px !important;}
.sos-how__card-body {
    padding: 0 30px 0px !important;
    flex-direction: row !important;
    height: 120px !important;
    align-items: center !important;
}
.sos-price__sub{max-width: fit-content !important;}

/* ═══════════════════════════════════════════════
   LEFT COLUMN — WHITE BILLING CARD
═══════════════════════════════════════════════ */
.sos-billing-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 80px 20px 80px;
    margin-right: 40px;
    box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.1);
}

/* Product logo + name + price row */
.sos-product-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0 40px 0;
}
.sos-logo-box {
    width: 135px;
    flex-shrink: 0;
    align-self: flex-end;
}
.sos-logo-box img {
    display: block;
    max-width: 100%;
    width: 135px;
    border-radius: 10px;
    object-fit: contain;
}
.sos-product-info { flex: 1; }
.sos-product-name {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    color: #a00675;
    font-weight: 700;
    letter-spacing: -0.18px;
    line-height: 46px;
    margin: 40px 0 16px 0;
}
.sos-product-price {
    font-family: 'Karla', sans-serif;
    font-size: 30px;
    color: #a1c93f;
    font-weight: 700;
    line-height: 26px;
}

/* Billing form heading */
.sos-billing-heading {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #195286;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 32px;
}

/* Form field labels */
.sos-field-label {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 4px;
}
.sos-field-label .required { color: #ff0000; }

/* WooCommerce form field overrides */
.sos-billing-card .woocommerce-billing-fields h3 { display: none; }
.sos-billing-card .woocommerce-billing-fields__field-wrapper { padding: 0; }
.sos-billing-card .form-row { margin-bottom: 20px !important; padding: 0 !important; }
.sos-billing-card .form-row label {
    font-family: 'Karla', sans-serif !important;
    font-size: 16px !important;
    color: #4a4a4a !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    margin-bottom: 4px !important;
    display: block !important;
}
.sos-billing-card .form-row input.input-text,
.sos-billing-card .form-row select {
    font-family: 'Karla', sans-serif !important;
    font-size: 18px !important;
    color: #333333 !important;
    background: #ffffff !important;
    border: 1px solid rgba(46, 94, 170, 0.2) !important;
    border-radius: 5px !important;
    padding: 12px 10px !important;
    width: 100% !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: 24px !important;
    transition: border-color 0.2s;
    height: auto !important;
}
.sos-billing-card .form-row select {
    border-color: rgba(176, 186, 202, 1) !important;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
}
.sos-billing-card .form-row input.input-text:focus,
.sos-billing-card .form-row select:focus {
    border-color: rgba(46, 94, 170, 0.6) !important;
}
.sos-billing-card abbr.required { color: #ff0000 !important; text-decoration: none !important; }

/* Remove fields we don't need */
.sos-billing-card .woocommerce-additional-fields,
.sos-billing-card #order_comments_field { display: none !important; }

/* ═══════════════════════════════════════════════
   RIGHT COLUMN — PAYMENT
═══════════════════════════════════════════════ */
.sos-payment-col { padding-top: 0; }

.sos-payment-heading {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #a1c93f;
    font-weight: 400;
    line-height: 26px;
    margin: 30px 0 32px 0;
}

/* Hide default WooCommerce order review table - we use custom display */
.sos-payment-col .woocommerce-checkout-review-order-table { display: none !important; }
.sos-payment-col .woocommerce-checkout-review-order { background: transparent !important; border: none !important; padding: 0 !important; }

/* Offer price display */
.sos-offer-price {
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin: 10px 0 0 0;
}
.sos-offer-price strong { font-weight: 700; }

/* Coupon field */
.sos-coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.sos-coupon-input {
    flex: 1;
    border: 1px solid #a1c93f !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    font-size: 18px !important;
    font-family: 'Karla', sans-serif !important;
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.7) !important;
    outline: none !important;
}
.sos-coupon-input::placeholder { color: rgba(255,255,255,0.5); }
.sos-coupon-btn {
    background: #a1c93f;
    color: #ffffff;
    border: 1px solid #a1c93f;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.sos-coupon-btn:hover { background: #8fb530; }

/* Payment methods */
.sos-payment-col #payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}
.sos-payment-col #payment .payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border: 1px solid #cdd7e6 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}
.sos-payment-col #payment .payment_methods li {
    border-bottom: 1px solid #cdd7e6 !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.05) !important;
}
.sos-payment-col #payment .payment_methods li:last-child { border-bottom: none !important; }
.sos-payment-col #payment .payment_methods li label {
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: 'Lato', sans-serif !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sos-payment-col #payment .payment_methods li input[type="radio"] {
    accent-color: #a1c93f;
    width: 16px;
    height: 16px;
}
.sos-payment-col #payment .payment_methods li img {
    max-height: 22px !important;
    width: auto !important;
}
.sos-payment-col #payment .payment_box {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.75) !important;
    font-size: 13px !important;
    padding: 8px 16px 12px !important;
}

/* Consent checkbox */
.sos-consent-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 10px;
}
.sos-consent-wrap input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #a1c93f;
    flex-shrink: 0;
}
.sos-consent-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 20px;
}
.sos-consent-text a { color: #ffffff; text-decoration: underline; }

/* Complete Purchase Button */
.sos-payment-col #place_order,
.sos-payment-col .woocommerce #payment div.place-order .button,
.sos-payment-col input#place_order {
    background: #a1c93f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px 24px !important;
    font-size: 20px !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 700 !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.1s !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: block !important;
    text-align: center !important;
    margin-top: 20px !important;
    margin-bottom: 12px !important;
}
.sos-payment-col #place_order:hover,
.sos-payment-col input#place_order:hover {
    background: #195286 !important;
    transform: translateY(-2px) scale(1.01) !important;
}

/* WooCommerce notices */
.woocommerce-notices-wrapper { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
    border-left-color: #a00675 !important;
    font-family: 'Lato', sans-serif !important;
}

/* ═══════════════════════════════════════════════
   THANK YOU PAGE
═══════════════════════════════════════════════ */
.sos-thankyou-wrap {
    min-height: 100vh;
    background: #a00675;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.sos-thankyou-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 60px 48px;
    max-width: 580px;
    width: 100%;
    text-align: center;
    box-shadow: 6px 12px 40px rgba(0,0,0,0.2);
}
.sos-thankyou-icon { font-size: 3rem; margin-bottom: 20px; }
.sos-thankyou-title {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    color: #a00675;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}
.sos-thankyou-body p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 12px;
}
.sos-thankyou-body strong { color: #a00675; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media only screen and (max-width: 800px) {
    .sos-top-section { padding: 16px 16px 30px 16px; }
    .sos-almost-there { font-size: 44px; line-height: 44px; }
    .sos-checkout-label { margin-top: 0; font-size: 16px; }
    .sos-subtitle { font-size: 18px; line-height: 26px; padding: 0; }

    .sos-bottom-section { padding: 16px 16px 56px 16px; }
    .sos-bottom-inner { grid-template-columns: 1fr; }

    .sos-billing-card {
        padding: 40px 40px 40px 40px;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .sos-product-name { font-size: 36px; line-height: 44px; }
    .sos-logo-box { align-self: center; }

    .sos-payment-heading { margin-top: 0; }
}




.sos-for-you__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.sos-for-you__list li{width: 48%;}
.sos-for-you__list li span{margin-left: 0px !important;}



/*SOS Reset*/

:root {
    --pink:   #a00675;
    --green:  #a1c93e;
    --blue:   #195286;
    --dark:   #1e2749;
    --body:   #30343f;
    --light:  #fafaff;
    --white:  #ffffff;
    --radius: 3px;
    --max-w:  1120px;
}

body.page-template-page-sos-reset-kit {
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    color: var(--body);
    background: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hide WP header/footer */
body.page-template-page-sos-reset-kit .site-header,
body.page-template-page-sos-reset-kit header.site-header,
body.page-template-page-sos-reset-kit .site-footer,
body.page-template-page-sos-reset-kit footer {
    display: none !important;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { line-height: 1.2; font-family: 'Lato', sans-serif; }

/* ===========================
   CONTAINER
=========================== */
.sos-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.sos-container--full {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-pink {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 90px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    line-height: 26px;
    white-space: nowrap;
    text-decoration: none;
}
.btn-pink:hover { background: var(--green); color: #fff; transform: scale(1.02); }

.btn-green {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 90px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    line-height: 26px;
    text-decoration: none;
}
.btn-green:hover { background: var(--blue); color: #fff; }

/* ===========================
   SECTION 1 — HERO
=========================== */
.sos-hero {
    padding: 40px;
}
.sos-hero__grid {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.sos-hero__logo {
    width: 183px;
    margin-bottom: 0;
}
.sos-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sos-hero__logo-wrap { margin-bottom: 5px; }
.sos-hero__title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(34px, 4.5vw, 62px);
    font-weight: 700;
    color: #fff;
    line-height: 1.03;
    margin: 7px 0 24px;
    /* negative right margin like original */
    margin-right: -50px;
}
.sos-hero__title em { font-style: italic; }
.sos-hero__sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(17px, 1.8vw, 20px);
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-right: 40px;
}
.sos-hero__right { /* spacer for bg image */ }

/* ===========================
   SECTION 2 — THIS IS FOR YOU
=========================== */
.sos-for-you {
    background: var(--white);
    padding: 124px 0;
}
.sos-for-you__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.sos-for-you__img img {
    width: 100%;
    max-width: 510px;
    border-radius: 8px;
    margin: 0 auto;
}
.sos-for-you__heading {
    font-family: 'Lato', sans-serif;
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 12px;
}
.sos-for-you__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sos-for-you__list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 14px;
}
.sos-for-you__list li .icon-wrap {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}
.sos-for-you__list li .icon-wrap img {
    width: 46px;
}
.sos-for-you__list li span {
    font-family: 'Lato', sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    color: #545454;
    line-height: 1.5;
    margin-left: -24px;
}

/* ===========================
   SECTION 3 — INSIDE THE KIT (PINK)
=========================== */
.sos-inside {
    background: var(--pink);
    padding: 124px 0;
}
.sos-inside__heading {
    font-family: 'Lato', sans-serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 56px;
}
.sos-inside__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sos-inside__card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 30px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.sos-inside__card-img {
    width: 114px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 32px;
}
.sos-inside__card-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--pink);
    line-height: 1.3;
    padding: 0 20px;
}

/* ===========================
   SECTION 4 — WHY GROUNDING (BG IMAGE)
=========================== */
.sos-grounding {
    background:
        url('<?php echo get_template_directory_uri(); ?>/assets/images/sos-grounding-bg.png') center / initial no-repeat,
        #444;
    padding: 200px 40px;
    text-align: center;
}
.sos-grounding__title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 17px;
    line-height: 1.2;
}
.sos-grounding__text {
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #fff;
    line-height: 1.6;
}

/* ===========================
   SECTION 5 — HOW IT WORKS (WHITE)
=========================== */
.sos-how {
    background: var(--white);
    padding: 124px 0;
}
.sos-how__heading {
    font-family: 'Lato', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--pink);
    text-align: center;
    margin-bottom: 40px;
}
.sos-how__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 -40px;
}
.sos-how__card {
    background: var(--pink);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.sos-how__card-img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    display: block;
}
.sos-how__card-body {
    padding: 0 30px 32px;
    display: flex;
    flex-direction: column;
}
.sos-how__card-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 24px;
}

/* ===========================
   SECTION 6 — PRICE (PINK)
=========================== */
.sos-price {
    background: var(--pink);
    padding: 40px;
    text-align: center;
}
.sos-price__label {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    color: var(--green);
    margin-bottom: 0;
}
.sos-price__amount {
    font-family: 'Lato', sans-serif;
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 25px 0;
}
.sos-price__sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #fff;
    margin-bottom: 0;
    max-width: 600px;
    margin: 0 auto 25px;
}
.sos-price__btn-wrap {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

/* ===========================
   SECTION 7 — FOOTER (GREEN)
=========================== */
.sos-footer {
    background: var(--green);
    padding: 20px 40px;
    text-align: center;
}
.sos-footer__copy {
    font-family: 'Lato', sans-serif;
    font-size: clamp(12px, 1.2vw, 16px);
    color: var(--pink);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
    .sos-inside__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .sos-how__cards {
        grid-template-columns: 1fr;
        margin: 0;
    }
}

@media (max-width: 768px) {
  
    .sos-hero {
        background-size: cover !important;
        background-position: center;
        padding: 20px;
        min-height: auto;
        height: 485px !important;
    }
    .sos-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sos-hero__title { margin-right: 0; }
    .sos-hero__sub { margin-right: 0; }
    
    .btn-pink, .btn-green {
        width: 100%;
        padding: 12px 20px;
    }
    .sos-for-you { padding: 80px 20px; }
    .sos-for-you__grid { grid-template-columns: 1fr; }
    .sos-for-you__heading { text-align: center; }
    .sos-inside { padding: 80px 20px; }
    .sos-inside__cards { grid-template-columns: 1fr; gap: 24px; }
    .sos-grounding { padding: 100px 20px; }
    .sos-how { padding: 80px 20px; }
    .sos-how__cards { gap: 24px; margin: 0; }
    .sos-price { padding: 20px; }
    .sos-footer { padding: 10px 20px; }

    .sos-for-you__list li span {
        margin-left: 0;
        text-align: center;
    }
    .sos-for-you__list li {
                display: flex;
        flex-direction: column;
    }
    .sos-for-you__list li .icon-wrap {
        justify-content: center;
    }

    .sos-for-you .sos-container,.sos-inside .sos-container{
    padding: 0px !important;
}
.sos-for-you__list{gap: 10px !important;}
.sos-price__amount{margin-top: 5px !important;}
.sos-footer__copy{margin-bottom: 0px;}
.sos-price__label{font-size: 16px !important;}
}



/*************Home Responsive***********************/



@media only screen and (min-width: 769px) and (max-width: 1024px) {
 
  /* ── Header ── */
  .site-header { padding: 10px 20px; }
  .site-logo img { width: 150px; }
  .main-navigation ul { gap: 20px; }
  .main-navigation ul li a { font-size: 15px; }
 
  /* ── Hero ── */
  .hero-section {
    background-size: 55%;
    background-position: right center;
    min-height: 380px;
  }
  .hero-content { padding: 0 25px; }
  .hero-name {
    font-size: 44px;
    line-height: 70px;
    padding: 30px 10px 15px;
  }
  .hero-headline {
    font-size: 26px;
    line-height: 36px;
  }
  .hero-subheadline {
    font-size: 17px;
    line-height: 28px;
    margin-top: 18px;
  }
  .hero-cta-wrap { margin: 35px 0 0 60px; }
  .btn-hero {
    font-size: 24px;
    padding: 14px 40px;
  }
 
  /* ── Approach banner ── */
  .approach-section { padding: 30px 20px; }
  .approach-subheadline {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 0;
  }
  .approach-text { font-size: 17px; line-height: 26px; }
 
  /* ── My Approach ── */
  .my-approach-section { padding: 30px 20px; }
  .section-heading-pink { font-size: 30px; line-height: 55px; margin: 10px 0 30px; }
  .approach-highlight {
    font-size: 20px;
    line-height: 44px;
    padding: 0 20px;
  }
  .approach-body {
    font-size: 20px;
    line-height: 32px;
    padding: 20px 40px;
  }
  .approach-footer-text {
    font-size: 20px;
    line-height: 32px;
    padding: 0 20px;
  }
 
  /* ── Testimonials ── */
  .testimonials-section { padding: 15px 20px; }
  .testimonials-heading { font-size: 24px; line-height: 32px; }
  .testimonial-text {
    font-size: 17px;
    line-height: 26px;
    padding: 0 80px;
  }
 
  /* ── Upcoming Events ── */
  .upcoming-events-section { padding: 30px 20px 50px; }
  .section-heading-large { font-size: 36px; line-height: 70px; }
  .events-intro { font-size: 17px; line-height: 26px; margin: 10px 0 30px; }
  .btn-check { font-size: 17px; padding: 14px 40px; }
  .event_btn { text-align: center; }
 
  /* ── Newsletter ── */
  .newsletter-section {
    padding: 30px 20px 15px;
    background-size: cover !important;
  }
  /* On tablet the form column is right-half; push it a bit */
  .newsletter-box { margin: 0; }
  .newsletter-title { font-size: 19px; line-height: 28px; }
  .newsletter-subtitle { font-size: 15px; line-height: 36px; }
  .btn-submit { font-size: 17px; }
 
  /* ── Popup ── */
  .popup-box { padding: 20px; max-width: 480px; }
  .popup-sos-title { font-size: 16px; }
  .btn-popup-start { font-size: 20px; padding: 12px 40px; }
}
 
 
/* =========================================================
   MOBILE  (≤ 768px)
   (supplements / overrides the existing ≤800px block)
   ========================================================= */
@media only screen and (max-width: 768px) {
 
  /* ── Header ── */
  .site-header { padding: 8px 15px; }
  .site-logo img { width: 140px; }
  /* Hide desktop nav; burger already shown via ≤800px rule */
 
  /* ── Hero ── */
  .hero-section {
    background-size: cover;
    background-position: top center;
    height: 625px;          /* tall enough to show image */
    align-items: flex-end;
  }
  .hero-content { padding: 0 15px 30px; }
  .hero-name {
    font-size: 38px;
    line-height: 46px;
    padding: 0 0 10px;
    color: var(--color-pink);
    /* ensure readable over image */
    text-shadow: 0 1px 4px rgba(255,255,255,0.6);
  }

      .tilly-articles-section {
        padding: 0px 0px 50px 0px !important;
    }
  .hero-headline {
    font-size: 22px;
    line-height: 30px;
    color: var(--color-white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  }
  .hero-subheadline {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
    padding-top: 10px;
    margin-top: 0;
  }
  .hero-cta-wrap { margin: 20px 0 0; }
  .btn-hero {
    font-size: 17px;
    padding: 12px 18px;
    width: 100%;
    text-align: center;
    display: block;
  }
 
  /* ── Section-row becomes single column ── */
  .section-row {
    display: flex;
    flex-direction: column;
    column-gap: 0;
  }
  /* Reset all explicit grid-column inline styles */
  .section-row > div[style*="grid-column"] { width: 100% !important; }

  .upcoming-events-section .section-row{flex-direction: column-reverse !important;}
 
  /* ── Approach banner ── */
  .approach-section {
    padding: 20px 15px;
    background: var(--color-green); /* keep green on mobile too */
  }
  .approach-image-img {
    width: 140px !important;
    margin: 0 auto 10px !important;
  }
  .approach-subheadline {
    font-size: 19px;
    line-height: 28px;
    padding: 10px 0;
  }
  .approach-text { font-size: 15px; line-height: 22px; }
 
  /* ── My Approach ── */
  .my-approach-section { padding: 25px 15px; }
  .section-heading-pink {
    font-size: 22px;
    line-height: 38px;
    margin: 10px 0 20px;
  }
  .approach-highlight {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 15px;
  }
  .approach-body {
    font-size: 15px;
    line-height: 24px;
    padding: 15px 10px;
  }
  .approach-footer-text {
    font-size: 15px;
    line-height: 24px;
    padding: 0 10px;
  }
 
  /* ── Testimonials ── */
  .testimonials-section { padding: 15px 10px; }
  .testimonials-heading { font-size: 20px; line-height: 28px; }
  .testimonial-text {
    padding: 0 10px;
    font-size: 15px;
    line-height: 24px;
  }
  .carousel-arrow { display: none; }
  .carousel-dots { margin-top: 10px; }
 
  /* ── Upcoming Events ── */
  .upcoming-events-section { padding: 25px 15px 40px; }
  .section-heading-large {
    font-size: 28px;
    line-height: 40px;
    margin-top: 0;
  }
  .events-intro {
    font-size: 15px;
    line-height: 24px;
    margin: 10px 0 20px;
    padding: 0 5px;
  }
  .event_btn { width: 100%; }
  .btn-check {
    font-size: 16px;
    padding: 12px 15px;
    width: 100%;
    display: block;
    text-align: center;
  }
  /* Events image fills width */
  .upcoming-events-section img { width: 100% !important; margin-top: 20px; }
 
  /* ── Newsletter ── */
  .newsletter-section {
    padding: 20px 10px;
    background-size: cover !important;
    background-attachment: scroll;
     /* avoid fixed bg flicker on iOS */
  }
  /* On mobile the form box should span full width */
  .newsletter-section .section-row > div {
    width: 100% !important;
  }
  .newsletter-box {
    background: rgba(255,255,255,0.88);
    margin: 10px 0;
  }
  .newsletter-box-inner { padding: 15px 12px; }
  .newsletter-title {
    font-size: 17px;
    line-height: 26px;
  }
  .newsletter-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
  }
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    font-size: 15px;
    padding: 10px 8px;
    margin: 10px 0;
  }
  .newsletter-checkbox-label { font-size: 14px; line-height: 18px; }
  .btn-submit { font-size: 16px; padding: 10px; }
 
  /* ── Home Popup ── */
  .popup-box {
    padding: 15px 12px;
    max-width: 95vw;
    width: 95vw;
  }
  .popup-sos-title { font-size: 15px; line-height: 22px; }
  .btn-popup-start {
    font-size: 18px;
    padding: 12px 20px;
  }
 
  /* ── Footer ── */
  .site-footer { padding: 0; }
  .footer-inner { padding: 20px 15px 10px; }
  .footer-logo img { max-width: 180px; }
  .footer-about { font-size: 14px; line-height: 22px; }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-column-title { font-size: 16px; line-height: 32px; }
  .footer-links a { font-size: 14px; }
  .footer-newsletter-section { padding: 20px 10px; }
  .footer-newsletter-title { font-size: 22px; line-height: 30px; }
  .footer-newsletter-text { font-size: 16px; line-height: 24px; }
  .footer-subscribe-form { flex-direction: column; }
  .footer-subscribe-form input[type="email"] { padding: 12px 10px; font-size: 15px; }
  .btn-subscribe { width: 100%; padding: 12px; font-size: 18px; }
  .footer-copyright { font-size: 13px; }




  .blog-nav a {
    font-size: 16px;
    color: var(--color-pink);
    font-family: var(--font-lato);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-header-section {
    padding: 10px 0 10px;
    background: rgba(238, 233, 230, 0);
}
}
 
 
/* =========================================================
   SMALL MOBILE  (≤ 400px)
   Extra tweaks for very narrow screens
   ========================================================= */
@media only screen and (max-width: 400px) {
 
  .hero-name { font-size: 30px; line-height: 38px; }
  .hero-headline { font-size: 18px; line-height: 26px; }
  .hero-subheadline { font-size: 14px; line-height: 22px; }
  .btn-hero { font-size: 15px; }
 
  .section-heading-large { font-size: 22px; line-height: 32px; }
  .newsletter-title { font-size: 15px; }
 
  .popup-box { padding: 12px 8px; }
  .btn-popup-start { font-size: 16px; }
}

















/************************About Responsive************************/



@media only screen and (max-width: 1024px) {
  /* Let the section-row flex-column rule (from the base ≤800px media
     query) do the heavy lifting; we just make sure inner wrappers
     never exceed viewport width. */
  .about-welcome-title,
  .about-welcome-text,
  .about-quote,
  .about-quote-author,
  .about-author-label,
  .about-author-photo img,
  .about-author-name,
  .about-author-bio {
    max-width: 100%;
  }
}


/* =========================================================
   TABLET  (769px – 1024px)
   ========================================================= */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

  /* ── Blog header (shared template part) ── */
  .blog-header,
  .page-header {
    padding: 40px 20px;
  }

  /* ── Welcome / pink banner ── */
  /* The section uses inline style; we override the padding */
  section[style*="background: var(--color-pink)"],
  section[style*="background:var(--color-pink)"] {
    padding: 20px !important;
  }

  .about-welcome-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 20px;
  }
  .about-welcome-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  /* ── Quote section ── */
  section[style*="background-image"][style*="Tilly-LandingPage"] {
    padding: 30px 20px !important;
    background-attachment: scroll !important; /* avoid iOS flicker */
  }

  .about-quote {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 12px;
  }
  .about-quote-author { font-size: 18px; }

  /* ── Author bio ── */
  .about-author-section { padding: 50px 20px; }

  .about-author-label {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .about-author-photo img {
    width: 260px !important;
  }

  .about-author-name {
    font-size: 26px;
    line-height: 34px;
    margin: 12px 0;
  }

  .about-author-bio {
    font-size: 17px;
    line-height: 26px;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-author-bio p {
    margin-bottom: 14px;
  }
}


/* =========================================================
   MOBILE  (≤ 768px)
   ========================================================= */
@media only screen and (max-width: 768px) {

  /* ── Section-row → single column (redundant safety net) ── */
  .section-row {
    display: flex;
    flex-direction: column;
  }

  /* Reset all inline grid-column divs to full width */
  .section-row > div[style*="grid-column"] {
    width: 100% !important;
    grid-column: unset !important;
  }

  /* ── Welcome / pink banner ── */
  section[style*="background: var(--color-pink)"],
  section[style*="background:var(--color-pink)"] {
    padding: 0 !important;
  }

  /* Inner padding wrapper */
  section[style*="background: var(--color-pink)"] div[style*="padding:30px"],
  section[style*="background:var(--color-pink)"] div[style*="padding:30px"] {
    padding: 20px 15px !important;
  }

  .about-welcome-title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 16px;
    text-align: center;
  }

  .about-welcome-text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
  }

  /* ── Quote section ── */
  section[style*="background-image"] {
    background-attachment: scroll !important; /* fix iOS fixed-bg bug */
    padding: 30px 15px !important;
  }

  .about-quote {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
  }

  .about-quote-author {
    font-size: 16px;
    text-align: center;
  }

  /* ── Author bio ── */
  .about-author-section {
    padding: 40px 15px 40px;
  }

  .about-author-label {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    padding: 0 0 10px;
  }

  .about-author-photo img {
    width: 200px !important;
    margin: 0 auto 15px !important;
  }

  .about-author-name {
    font-size: 22px;
    line-height: 30px;
    margin: 10px 0;
    text-align: center;
  }

  .about-author-bio {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    max-width: 100%;
    margin: 0;
    padding: 0 5px;
  }

  .about-author-bio p {
    margin-bottom: 14px;
  }

  /* ── Spacer columns become zero-height on mobile ── */
  .about-author-section .section-row > div:first-child,
  .about-author-section .section-row > div:last-child {
    display: none;
  }
}


/* =========================================================
   SMALL MOBILE  (≤ 400px)
   ========================================================= */
@media only screen and (max-width: 400px) {

  .about-welcome-title { font-size: 22px; line-height: 30px; }
  .about-welcome-text  { font-size: 14px; line-height: 22px; }

  .about-quote         { font-size: 17px; line-height: 26px; }
  .about-quote-author  { font-size: 14px; }

  .about-author-photo img { width: 160px !important; }
  .about-author-name   { font-size: 20px; line-height: 26px; }
  .about-author-bio    { font-size: 14px; line-height: 22px; }
}



/*Contact Page Responsive*/


/* =========================
   Tablet (≤ 992px)
========================= */
@media (max-width: 992px) {
  .contact-form-wrapper > div > div {
    max-width: 90%;
  }

  .contact-title {
    font-size: 28px;
  }
}

/* =========================
   Mobile (≤ 768px)
========================= */
@media (max-width: 768px) {

      .contact-form-row p{
        flex-direction: column;
        gap: 0;
        margin-bottom: 0px;
    }
    .contact-form-row p br{display: none;}
    form.contact-form > p {
    margin-bottom: 0px;
}

  .contact-title {
    font-size: 24px;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .btn-contact {
    font-size: 15px;
    padding: 12px;
  }

  .blog-posts-section {
    padding: 0px 15px 0px !important;
}
.blog-post-title a {
    font-size: 24px;
    line-height: 100%;
}

.mobile-menu ul li a {
    overflow-wrap: anywhere;
        font-size: 18px;
        font-family: "Open Sans";
        font-weight: 700;
        font-style: normal;
        line-height: 32px;
        color: rgb(160, 6, 117);
        transition: box-shadow 0.1s ease-in-out;
        text-decoration: none;
}
.mobile-menu ul li{margin-bottom: 0px;}
.contact-form input, .contact-form textarea {font-size: 18px;padding: 20px;}
.footer_newsletter_heading{font-size: 20px;}
.footer_newsletter_desc {font-size: 16px;line-height: 160%;}
.footer_top_legal_area{margin-top: 0px;}

.mobile-menu ul li.current_page_item a{color: rgb(17, 17, 17);border-bottom: 2px solid #989898;}

}

/* =========================
   Small Mobile (≤ 480px)
========================= */
@media (max-width: 480px) {

  .contact-title {
    font-size: 20px;
  }

  
}




