
/* Base Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #1c1c1c;
  color: #ffffff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #ffffff;
  color: #000000;
  padding: 1em 2em;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5em;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links .active {
  color: #facc15;
}

/* Hero Section with Gradient Background */
.hero-blue {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 0em 0em;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 500px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.6;
  padding: 1em;
}

.hero-text p {
  margin-bottom: 1em;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  padding: 0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5em;
  
}

/* Buttons */
.btn {
  background-color: #facc15;
  color: #000000;
  font-weight: bold;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #eab308;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #1c1c1c;
  padding: 4em 2em;
}

.feature {
  max-width: 300px;
  margin: 1.5em;
  text-align: center;
}

.feature img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  margin-bottom: 1em;
}

.feature h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.feature p {
  font-size: 1em;
  margin-bottom: 1em;
}

/* Footer */
footer {
  background-color: #1c1c1c;
  color: #f1f1f1;
  text-align: center;
  padding: 2em 0;
  font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 2;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
    margin-bottom: 2em;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact Page Hero Section */
.contact-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.contact-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4em 2em;
  background-color: #1c1c1c;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.contact-form .btn {
  margin-top: 1.5em;
  align-self: flex-start;
}

/* Book Page Hero Section */
.book-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.book-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.book-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* Book Details Section */
.book-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.book-image {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 1em;
}

.book-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.book-description {
  flex: 1 1 300px;
  max-width: 600px;
  margin: 1em;
}

.book-description h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.book-description p {
  font-size: 1em;
  margin-bottom: 1em;
}

.book-description .btn {
  margin-top: 1em;
}

/* About Page Hero Section */
.about-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.about-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* About Content Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.about-image {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 1em;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  flex: 1 1 300px;
  max-width: 600px;
  margin: 1em;
}

.about-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.about-text p {
  font-size: 1em;
  margin-bottom: 1em;
}

.about-text .btn {
  margin-top: 1em;
}

/* Podcast Page Hero Section */
.podcast-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.podcast-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.podcast-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* Podcast Episodes Section */
.podcast-episodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.episode {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 1em;
  text-align: center;
}

.episode img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1em;
}

.episode h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.episode p {
  font-size: 1em;
  margin-bottom: 1em;
}

/* Speaking Page Hero Section */
.speaking-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.speaking-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.speaking-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* Speaking Topics Section */
.speaking-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.topic {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 1em;
  text-align: center;
}

.topic img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1em;
}

.topic h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.topic p {
  font-size: 1em;
  margin-bottom: 1em;
}

/* Tools Page Hero Section */
.tools-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.tools-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.tools-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* ----------  TOOLS SECTIONS  ---------- */
.tools-list,
.tool-list{
  display:flex;                 /* cards side‑by‑side           */
  flex-wrap:wrap;               /* wrap on smaller screens      */
  gap:2rem;                     /* space between cards          */
  justify-content:center;       /* keep them centered           */
  margin-bottom:4rem;           /* optional bottom spacing      */
}

/* headline inside the bonus section should take the full row */
.tool-list > p{
  flex:1 1 100%;
  text-align:center;
  font-weight:600;
  margin-bottom:1rem;
}

/* card width (match originals) */
.tool-item{
  width:220px;                  /* tweak if you want wider/narrower */
}

.tool-item img {
  width: 125px;
  height: 125px;
  border-radius: 8px;
  margin-bottom: 1em;
}

.tool-item h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.tool-item p {
  font-size: 1em;
  margin-bottom: 1em;
}


/* Coaching Page Hero Section */
.coaching-hero {
  background: linear-gradient(to right, #0052a5, #002b5c);
  color: #ffffff;
  padding: 5em 2em;
  text-align: center;
}

.coaching-hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.coaching-hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

/* Coaching Services Section */
.coaching-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.service {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 1em;
  text-align: center;
}

.service img {
  width: 150;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1em;
}

.service h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.service p {
  font-size: 1em;
  margin-bottom: 1em;
}

/* ---------- 10-Step Guide Landing ---------- */
.guide-hero{
  padding:3rem 0;text-align:center;background:#fff;
}
.guide-hero h1{
  font-family:var(--font-heading);
  font-size:clamp(2rem,4.5vw,3rem);margin-bottom:1rem;
}
.guide-inner p{font-size:1.1rem;max-width:700px;margin-inline:auto 2rem;}
.guide-form{
  margin-top:2.5rem;display:flex;flex-direction:column;gap:1rem;
  max-width:420px;margin-inline:auto;
}
.guide-form input[type="text"],
.guide-form input[type="email"]{padding:.8rem 1rem;border-radius:var(--radius);border:1px solid #ccc;}
.checkbox{display:flex;align-items:center;gap:.6rem;font-size:.9rem;cursor:pointer;}
.checkbox input{transform:scale(1.15);}
