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

body {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.5;
  color: #000;
  font-size: 18px;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-width {
  max-width: 600px;
}

/* Links */
a {
  color: #c00;
  text-decoration: underline;
}

a:hover {
  color: #900;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial Narrow', 'Helvetica Condensed', 'Liberation Sans Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #54697e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  margin: 0 0 15px 0;
  background-color: transparent;
  padding: 0;
  display: block;
}

h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  font-family: Georgia, 'Times New Roman', serif;
}

p {
  margin-bottom: 15px;
  line-height: 1.5;
}

strong {
  font-weight: 700;
  color: #000;
  font-style: italic;
}

/* Bold without italic for hero subtitle */
.hero h3 strong,
.hero h3 b {
  font-weight: 700;
  font-style: normal;
  color: #000;
}

em {
  font-style: italic;
}

/* Header */
.site-header {
  border-bottom: 1px solid #ccc;
  padding: 15px 0 10px;
  background: #fff;
}

.header-cta {
  text-align: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
}

.header-cta a {
  font-weight: 700;
  color: #c00;
  text-decoration: none;
}

.header-cta a:hover {
  text-decoration: underline;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-family: Georgia, 'Times New Roman', serif;
  padding: 5px 0;
}

.main-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.main-nav a:hover {
  color: #c00;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 0 35px;
}

.hero-image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #54697e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Arial Narrow', 'Helvetica Condensed', 'Liberation Sans Narrow', Arial, sans-serif;
  line-height: 1.1;
}

.hero h3 {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  letter-spacing: normal;
}

.cta-button {
  display: inline-block;
  background-color: #54697e;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.75em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Arial Narrow', 'Helvetica Condensed', 'Liberation Sans Narrow', Arial, sans-serif;
}

.cta-button:hover {
  background-color: #445566;
  color: white;
  text-decoration: none;
}

.cta-subtext {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.5;
}

/* Sections */
section {
  padding: 25px 0;
  border-top: none;
}

section:first-of-type {
  padding-top: 30px;
}

section h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 0;
  display: block;
  color: #4a5d6d;
}

section h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
}

section p {
  margin-bottom: 15px;
  line-height: 1.5;
}

section ul {
  margin: 15px 0 20px 0;
  padding-left: 20px;
}

section li {
  margin-bottom: 10px;
  line-height: 1.5;
  list-style-type: disc;
}

/* Testimonials */
.testimonial {
  background-color: #f5f5f5;
  padding: 35px 0;
}

blockquote {
  font-size: 1.05em;
  font-style: normal;
  border-left: 3px solid #999;
  padding-left: 20px;
  margin: 30px 0;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  padding: 20px;
}

blockquote p {
  margin-bottom: 12px;
  font-family: Georgia, 'Times New Roman', serif;
}

blockquote footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

blockquote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

blockquote cite {
  font-style: normal;
  color: #666;
  font-size: 0.85em;
}

/* Problem/Solution Sections */
.problem, .solution, .philosophy {
  text-align: left;
}

/* Offerings */
.offerings {
  background-color: #fff;
  padding: 35px 0;
}

.offering {
  margin: 30px 0;
  padding: 25px 0;
  border-top: 3px solid #ccc;
}

.offering:first-child {
  border-top: none;
  padding-top: 0;
}

.offering h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
}

.offering p {
  margin-bottom: 18px;
  line-height: 1.5;
}

.cta-link {
  display: inline-block;
  color: #c00;
  text-decoration: underline;
  font-weight: 700;
  font-size: 1em;
  margin-top: 5px;
  font-family: Georgia, 'Times New Roman', serif;
}

.cta-link:hover {
  color: #900;
}

/* About Section */
.about {
  text-align: center;
  padding: 35px 0;
}

.about-image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: 25px;
}

.about h3 {
  font-size: 1.15em;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
}

.about p {
  text-align: left;
  margin-bottom: 15px;
  line-height: 1.5;
}

.about p:last-of-type {
  text-align: center;
}

.more-link {
  margin-top: 25px;
  font-style: italic;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #f5f5f5;
  padding: 30px 0 20px;
  margin-top: 0;
  border-top: 1px solid #ccc;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  font-size: 0.85em;
}

.footer-nav a:hover {
  color: #c00;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 0.8em;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 40px 0 35px;
  border-bottom: 1px solid #ccc;
}

.page-header h1 {
  font-size: 2em;
  margin-bottom: 18px;
  color: #4a5d6d;
}

.page-header p {
  font-size: 1.15em;
  color: #000;
  line-height: 1.4;
  font-family: Georgia, 'Times New Roman', serif;
}

.about-hero-image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: 25px;
}

/* Articles List */
.articles-list {
  padding: 40px 0;
}

.article-preview {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.article-preview:last-child {
  border-bottom: none;
}

.article-preview h2 {
  font-size: 1.5em;
  margin-bottom: 12px;
  margin-top: 0;
  background: none;
  padding: 0;
  display: block;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
  line-height: 1.3;
}

.article-preview h2 a {
  color: #000;
  text-decoration: none;
}

.article-preview h2 a:hover {
  color: #c00;
  text-decoration: underline;
}

.article-meta {
  color: #666;
  font-size: 0.85em;
  margin-bottom: 12px;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-preview p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more {
  color: #c00;
  text-decoration: underline;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
}

.read-more:hover {
  color: #900;
}

/* Blog Post Styles */
.blog-post {
  padding: 40px 0;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}

.post-header h1 {
  font-size: 2em;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
}

.post-meta {
  color: #666;
  font-size: 0.85em;
  font-family: Georgia, 'Times New Roman', serif;
}

.post-content {
  font-size: 1em;
  line-height: 1.5;
}

.post-content h2 {
  font-size: 1.4em;
  margin: 35px 0 15px;
  color: #4a5d6d;
  background-color: transparent;
  padding: 0;
  display: block;
}

.post-content h3 {
  font-size: 1.2em;
  margin: 30px 0 15px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
}

.post-content p {
  margin-bottom: 15px;
}

.post-content ul, .post-content ol {
  margin: 15px 0 20px 20px;
}

.post-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.post-content strong {
  font-weight: 700;
  font-style: italic;
  color: #000;
}

.post-content blockquote {
  background-color: #f5f5f5;
  padding: 20px;
  margin: 25px 0;
  border-left: 3px solid #999;
  font-size: 1em;
}

.post-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #ccc;
  text-align: center;
}

.back-link {
  color: #c00;
  text-decoration: underline;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
}

.back-link:hover {
  color: #900;
}

/* About Content */
.about-content {
  padding: 40px 0;
}

.about-content h2 {
  margin: 30px 0 15px;
  color: #4a5d6d;
  background-color: transparent;
  padding: 0;
  display: block;
}

.about-content h3 {
  margin: 25px 0 15px;
  font-size: 1.2em;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.about-content ul {
  margin: 15px 0 20px 20px;
}

.about-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* CTA Box */
.cta-box {
  background-color: #f5f9ff;
  border: 2px solid #556b7c;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  margin-bottom: 12px;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
}

.cta-box p {
  margin-bottom: 20px;
  font-size: 1em;
  line-height: 1.5;
}

/* Coaching Content */
.coaching-content {
  padding: 40px 0;
}

.coaching-content h2 {
  margin-bottom: 15px;
  color: #4a5d6d;
  background-color: transparent;
  padding: 0;
  display: block;
}

.coaching-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
}

.coaching-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.coaching-content ul {
  margin: 15px 0 20px 20px;
}

.coaching-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Free Resources */
.free-resources {
  padding: 40px 0;
}

.resource-card {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
  border: 1px solid #ccc;
}

.resource-card h2 {
  font-size: 1.3em;
  margin-bottom: 12px;
  color: #4a5d6d;
  margin-top: 0;
  background: none;
  padding: 0;
  display: block;
  text-transform: uppercase;
}

.resource-card p {
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.5;
}

/* Books List */
.books-list {
  padding: 40px 0;
}

.book-card {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  align-items: flex-start;
}

.book-card:last-child {
  border-bottom: none;
}

.book-cover {
  flex-shrink: 0;
}

.placeholder-cover {
  width: 170px;
  height: 255px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-info h2 {
  font-size: 1.6em;
  margin-bottom: 12px;
  margin-top: 0;
  text-align: left;
  color: #000;
  background: none;
  padding: 0;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
  line-height: 1.3;
}

.book-subtitle {
  font-size: 1.05em;
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
  font-family: Georgia, 'Times New Roman', serif;
}

.book-info p {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Community Content */
.community-content {
  padding: 40px 0;
}

.community-content h2 {
  margin-bottom: 15px;
  color: #4a5d6d;
  background-color: transparent;
  padding: 0;
  display: block;
}

.community-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2em;
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  font-weight: 700;
}

.community-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.community-content ul {
  margin: 15px 0 20px 20px;
}

.community-content li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.community-content strong {
  font-weight: 700;
  font-style: italic;
  color: #000;
}

.community-content blockquote {
  margin: 30px 0;
}

/* Horizontal Rules */
hr {
  border: none;
  border-top: 3px solid #ccc;
  margin: 35px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 17px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 2em;
  }
  
  .hero h3 {
    font-size: 1.15em;
  }
  
  section h2 {
    font-size: 1.5em;
  }
  
  section h3 {
    font-size: 1.15em;
  }
  
  .main-nav {
    gap: 15px;
  }
  
  .book-card {
    flex-direction: column;
    gap: 20px;
  }
  
  .placeholder-cover {
    width: 140px;
    height: 210px;
    margin: 0 auto;
  }
  
  .book-info h2 {
    text-align: center;
  }
  
  .book-subtitle {
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 1.9em;
  }
  
  .post-header h1 {
    font-size: 1.7em;
  }
  
  .cta-box {
    padding: 20px 15px;
  }
  
  blockquote {
    padding: 15px;
  }
  
  .hero-image, .about-image, .about-hero-image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 1.8em;
  }
  
  section h2 {
    font-size: 1.4em;
    padding: 6px 12px;
  }
  
  .main-nav {
    gap: 12px;
    font-size: 16px;
  }
}