.elementor-26 .elementor-element.elementor-element-4384c2a{--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;}/* Start custom CSS for container, class: .elementor-element-4384c2a *//* ===== LIFE COACH LANDING PAGE ===== */
:root {
  --primary: #6c63ff;
  --secondary: #f9f9ff;
  --accent: #ff9b6a;
  --dark: #222;
  --light: #fff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* ===== Header ===== */
.lc-header {
  position: sticky;
  top: 0;
  background: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  z-index: 999;
}
.lc-logo {
  height: 40px;
  margin-right: .5rem;
}
.lc-brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
}
.lc-nav a {
  text-decoration: none;
  margin-left: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  transition: color .3s ease;
}
.lc-nav a:hover {
  color: var(--primary);
}
.lc-cta-sm {
  background: var(--primary);
  color: #fff !important;
  padding: .5rem 1rem;
  border-radius: 6px;
}

/* ===== Hero Section ===== */
.lc-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 5%;
  background: var(--secondary);
}
.lc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}
.lc-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.lc-hero-text p.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.lc-hero-ctas .btn {
  display: inline-block;
  padding: .8rem 1.4rem;
  margin-right: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-primary:hover {
  background: #5851df;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.lc-hero-bullets {
  list-style: none;
  padding: 0;
  margin-top: 1.2rem;
}
.lc-hero-bullets li {
  margin-bottom: .5rem;
  padding-left: 1.5rem;
  position: relative;
}
.lc-hero-bullets li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
}
.lc-hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== Trust Logos ===== */
.lc-trust {
  background: #fff;
  padding: 2rem 5%;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.lc-trust-inner span {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #777;
}
.lc-logos img {
  height: 40px;
  margin: 0 1rem;
  opacity: 0.7;
  transition: opacity .3s ease;
}
.lc-logos img:hover {
  opacity: 1;
}

/* ===== About Section ===== */
.lc-about {
  padding: 5rem 5%;
  background: var(--light);
}
.lc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.lc-about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.lc-about-text p {
  margin-bottom: 1rem;
  color: #444;
}
.lc-about img {
  width: 100%;
  border-radius: 12px;
}

/* ===== Responsive ===== */
@media(max-width: 900px) {
  .lc-hero-inner,
  .lc-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lc-hero-text h1 {
    font-size: 2rem;
  }
  .lc-nav {
    display: none;
  }
}/* End custom CSS */