/* ==========================================================================
   Cost Segregation Book Site - Complete Stylesheet
   "Should I Get a Cost Segregation Study?" by AE Tax Advisors

   Brand Colors:
   - Navy:       #1B2A4A
   - Gold:       #C5A55A
   - White:      #FFFFFF
   - Light Gray: #F5F5F0
   - Dark Text:  #333333
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #C5A55A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1B2A4A;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #1B2A4A;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 15px;
}

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

/* --------------------------------------------------------------------------
   Sticky Navigation
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1B2A4A;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.logo {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: #C5A55A;
}

.logo span {
  color: #C5A55A;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #C5A55A;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C5A55A;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.btn-gold {
  background-color: #C5A55A;
  color: #1B2A4A;
}

.btn-gold:hover {
  background-color: #b8973f;
  color: #1B2A4A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 165, 90, 0.4);
}

.btn-navy {
  background-color: #1B2A4A;
  color: #FFFFFF;
}

.btn-navy:hover {
  background-color: #142039;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.4);
}

.btn-outline {
  border: 2px solid #C5A55A;
  color: #C5A55A;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #C5A55A;
  color: #1B2A4A;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background-color: #1B2A4A;
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 42, 74, 1) 0%, rgba(27, 42, 74, 0.9) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.book-cover-placeholder {
  width: 300px;
  min-width: 300px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #C5A55A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A55A;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Section Styling
   -------------------------------------------------------------------------- */
.section {
  padding: 60px 0;
}

.section-alt {
  background-color: #F5F5F0;
}

.section-title {
  text-align: center;
  color: #1B2A4A;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #C5A55A;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: -20px auto 40px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Card Layouts
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: #1B2A4A;
  margin-bottom: 10px;
}

.card p {
  color: #555;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.card-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #C5A55A;
  color: #1B2A4A;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Chapter List
   -------------------------------------------------------------------------- */
.chapter-card {
  background: #FFFFFF;
  border-left: 4px solid #C5A55A;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-left-color 0.3s ease, transform 0.3s ease;
}

.chapter-card:hover {
  border-left-color: #1B2A4A;
  transform: translateX(5px);
}

.chapter-card h3 {
  color: #1B2A4A;
  margin-bottom: 8px;
}

.chapter-card .meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.chapter-card p {
  color: #555;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Calculator
   -------------------------------------------------------------------------- */
.calculator-container {
  max-width: 800px;
  margin: 0 auto;
}

.calc-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1B2A4A;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #C5A55A;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.2);
}

.form-group input::placeholder {
  color: #aaa;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-results {
  background: #1B2A4A;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  margin-top: 30px;
}

.calc-results.hidden {
  display: none;
}

.calc-results h3 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-item {
  text-align: center;
  padding: 20px;
}

.result-item .result-value {
  font-size: 2rem;
  font-weight: 700;
  color: #C5A55A;
  display: block;
}

.result-item .result-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 5px;
  display: block;
}

.result-highlight {
  background: rgba(197, 165, 90, 0.15);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
}

.result-highlight .result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C5A55A;
}

.result-highlight .result-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Blog Grid
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-header-image {
  width: 100%;
  height: 200px;
  background-color: #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A55A;
  font-size: 3rem;
}

.blog-card-body {
  padding: 25px;
}

.blog-card h3 {
  color: #1B2A4A;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.blog-card .blog-meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.blog-card .blog-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.blog-card .read-more {
  color: #C5A55A;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.blog-card .read-more:hover {
  color: #1B2A4A;
}

/* --------------------------------------------------------------------------
   Blog Post (Single)
   -------------------------------------------------------------------------- */
.post-content {
  max-width: 750px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.post-header h1 {
  font-size: 2.2rem;
  color: #1B2A4A;
  line-height: 1.3;
}

.post-header .post-meta {
  color: #888;
  margin-top: 10px;
  font-size: 0.95rem;
}

.post-content h2 {
  color: #1B2A4A;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.post-content h3 {
  color: #1B2A4A;
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-content p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.post-content ul,
.post-content ol {
  margin-bottom: 18px;
  padding-left: 25px;
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content blockquote {
  border-left: 4px solid #C5A55A;
  padding: 15px 20px;
  margin: 25px 0;
  background-color: #F5F5F0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.post-content th {
  background-color: #1B2A4A;
  color: #FFFFFF;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

.post-content td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.post-content tr:hover td {
  background-color: #f9f9f5;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 8px 20px;
  border-radius: 4px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.share-btn:hover {
  opacity: 0.85;
  color: #FFFFFF;
}

.share-btn-twitter {
  background-color: #1DA1F2;
}

.share-btn-linkedin {
  background-color: #0077B5;
}

.share-btn-facebook {
  background-color: #4267B2;
}

.share-btn-email {
  background-color: #555;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1B2A4A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  line-height: 1.4;
  gap: 15px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #C5A55A;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #555;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: #C5A55A;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  padding-top: 20px;
  color: #555;
  line-height: 1.7;
}

.testimonial .author {
  font-weight: 600;
  color: #1B2A4A;
  font-style: normal;
}

.testimonial .author-title {
  font-size: 0.85rem;
  color: #888;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Who This Book Is For (Audience)
   -------------------------------------------------------------------------- */
.audience-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.audience-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05rem;
  color: #333;
}

.audience-list li::before {
  content: '\2713';
  color: #C5A55A;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background-color: #1B2A4A;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 25px;
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.cta-section .btn {
  margin: 0 8px;
}

/* --------------------------------------------------------------------------
   About / Services
   -------------------------------------------------------------------------- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-item {
  padding: 25px;
  background: #FFFFFF;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
}

.service-item h3 {
  margin-bottom: 10px;
}

.service-item p {
  color: #555;
  font-size: 0.95rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: #111827;
  color: #FFFFFF;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #C5A55A;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: #C5A55A;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-gold {
  color: #C5A55A;
}

.text-navy {
  color: #1B2A4A;
}

.text-white {
  color: #FFFFFF;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive - Tablet and Below (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1B2A4A;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero .hero-buttons {
    justify-content: center;
  }

  .book-cover-placeholder {
    width: 220px;
    min-width: 220px;
    height: 300px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Grids */
  .card-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Calculator */
  .form-row {
    grid-template-columns: 1fr;
  }

  .calc-form {
    padding: 25px;
  }

  .calc-results {
    padding: 25px;
  }

  .result-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-item .result-value {
    font-size: 1.6rem;
  }

  .result-highlight .result-value {
    font-size: 2rem;
  }

  /* Blog post */
  .post-header h1 {
    font-size: 1.7rem;
  }

  /* Typography */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* CTA */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section .btn {
    display: block;
    margin: 10px auto;
    max-width: 280px;
  }

  /* Chapter cards */
  .chapter-card {
    padding: 20px;
  }

  /* Share buttons */
  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Responsive - Small Mobile (480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .book-cover-placeholder {
    width: 180px;
    min-width: 180px;
    height: 250px;
    font-size: 1rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 15px;
  }
}
