body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Funnel Sans', sans-serif;
      background: #EFFCEE;
      color: white;
      height: 100%;
    }
    
    html {
      height: 100%;
    }

    .hero-section {
      background: radial-gradient(circle at center, #0f5a4f 0%, #083531 70%);
      min-height: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 20px;
      position: relative;
    }
.hero-badge {
      background: rgba(8, 53, 49, 0.9);
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      margin-bottom: 30px;
      border: 1px solid #fff;
      color: #fff;
      font-weight: 600;
    }
    .author-badge {
      background: rgba(8, 53, 49, 0.9);
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      margin-bottom: 30px;
      border: 1px solid #083531;
      color: #fbbf24;
      font-weight: 600;
    }

    .title {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 25px;
      line-height: 1.2;
      max-width: 800px;
    }

    .description {
      font-size: 18px;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 700px;
      opacity: 0.9;
    }

    .cta-section {
      margin-bottom: 40px;
    }

    .buy-button {
      background: #083531;
      color: white;
      font-weight: bold;
      font-size: 18px;
      padding: 15px 40px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

    .buy-button:hover {
      background: #0f5a4f;
      transform: translateY(-2px);
    }

    .price {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .terms {
      font-size: 12px;
      opacity: 0.7;
    }

    .religions-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .religion-svg {
      transition: opacity 0.3s ease, transform 0.3s ease;
      cursor: pointer;
    }

    .religion-svg:hover {
      opacity: 1 !important;
      transform: scale(1.1);
    }

    .about-section {
      background: #EFFCEE;
      padding: 100px 20px;
      text-align: center;
    }

    .about-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .about-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .about-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 30px;
      line-height: 1.2;
    }

    .about-text {
      font-size: 18px;
      color: #083531;
      line-height: 1.7;
      text-align: left;
      margin: 0;
    }

    .whats-inside-section {
      background: linear-gradient(to bottom, #EFFCEE 50%, #083531 50%);
      padding: 120px 20px;
    }

    .whats-inside-content {
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .light-content {
      flex: 1;
      padding-bottom: 40px;
    }

    .dark-content {
      flex: 1;
      padding-top: 40px;
    }

    .whats-inside-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .tablet-preview {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .tablet-frame {
      background: #083531;
      padding: 20px;
      border-radius: 25px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .tablet-frame:hover {
      transform: translateY(-5px);
    }

    .tablet-screen {
      background: white;
      border-radius: 15px;
      width: 300px;
      height: 500px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      overflow: hidden;
      position: relative;
    }

    .tablet-book-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: opacity 0.3s ease;
    }

    .tablet-content {
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      background: white;
      border-radius: 10px;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .tablet-content.active {
      opacity: 1;
    }

    .tablet-content h3 {
      color: #083531;
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 15px;
      margin-top: 0;
    }

    .tablet-content p {
      color: #083531;
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

.tablet-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* يخلي السكرول يظهر لو الكلام طويل */
  scrollbar-width: thin; /* شكل السكرول في فايرفوكس */
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

/* شكل السكرول في كروم وسفاري */
.tablet-screen::-webkit-scrollbar {
  width: 6px;
}

.tablet-screen::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.4);
  border-radius: 10px;
}

.tablet-screen::-webkit-scrollbar-track {
  background: transparent;
}

/* خلي السكرول في محتوى النص فقط */
.tablet-content {
  max-height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

/* شكل السكرول */
.tablet-content::-webkit-scrollbar {
  width: 6px;
}

.tablet-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.tablet-content::-webkit-scrollbar-track {
  background: transparent;
}

    .whats-inside-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .whats-inside-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 30px;
      line-height: 1.2;
      margin-top: 0;
    }

    .sections-list {
      margin-bottom: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px 30px;
    }

    .section-item {
      display: flex;
      flex-direction: column;
      padding: 12px 0;
      border-bottom: 1px solid rgba(8, 53, 49, 0.1);
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      margin-bottom: 5px;
    }

    .section-item:hover {
      background: rgba(8, 53, 49, 0.05);
      padding-left: 15px;
      padding-right: 15px;
    }

    .section-item.active {
      background: rgba(8, 53, 49, 0.1);
      padding-left: 15px;
      padding-right: 15px;
    }

    .section-label {
      font-size: 11px;
      color: #0f5a4f;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 15px;
      color: #083531;
      font-weight: 600;
    }

    .book-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 30px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 48px;
      font-weight: bold;
      color: white;
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 14px;
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.9;
    }

    .inside-description {
      font-size: 16px;
      color: white;
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .inside-cta-text {
      font-size: 16px;
      color: white;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .inside-buy-button {
      background: white;
      color: #083531;
      font-weight: bold;
      font-size: 16px;
      padding: 12px 30px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .inside-buy-button:hover {
      background: #EFFCEE;
      transform: translateY(-2px);
    }

    .author-section {
      background: #EFFCEE;
      padding: 120px 20px;
    }

    .author-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .author-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .author-image-frame {
      border-radius: 25px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .author-image-frame:hover {
      transform: translateY(-5px);
    }

    .author-photo-placeholder {
      width: 350px;
      height: 350px;
      background: linear-gradient(135deg, #EFFCEE 0%, rgba(15, 90, 79, 0.1) 100%);
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: all 0.3s ease;
    }

    .author-photo-placeholder:hover {
      background: linear-gradient(135deg, #EFFCEE 0%, rgba(15, 90, 79, 0.2) 100%);
    }

    .photo-icon {
      font-size: 48px;
      margin-bottom: 15px;
      opacity: 0.6;
    }

    .photo-text {
      font-size: 18px;
      font-weight: 600;
      color: #083531;
      margin: 0 0 8px 0;
      opacity: 0.8;
    }

    .photo-subtext {
      font-size: 16px;
      color: #0f5a4f;
      margin: 0;
      font-weight: 500;
      opacity: 0.7;
    }

    .author-content {
      text-align: left;
    }

    .author-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .author-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 30px;
      line-height: 1.2;
      margin-top: 0;
    }

    .author-text {
      color: #083531;
    }

    .author-text p {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .author-signature {
      font-weight: bold;
      font-size: 20px;
      color: #0f5a4f !important;
      margin-top: 30px !important;
      font-style: italic;
    }

    .blog-section {
      background: #EFFCEE;
      padding: 120px 20px;
    }

    .blog-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .blog-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .blog-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 20px;
      line-height: 1.2;
      margin-top: 0;
    }

    .browse-all-link {
      color: #0f5a4f;
      font-weight: 600;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
      position: relative;
    }

    .browse-all-link:hover {
      color: #083531;
    }

    .browse-all-link::after {
      content: '→';
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .browse-all-link:hover::after {
      transform: translateX(4px);
    }

    .blog-posts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .blog-post {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(8, 53, 49, 0.1);
    }

    .blog-post:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .blog-post-image {
      height: 200px;
      background: linear-gradient(135deg, #EFFCEE 0%, rgba(15, 90, 79, 0.1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .blog-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .blog-post:hover .blog-image {
      transform: scale(1.05);
    }

    .blog-post-content {
      padding: 30px;
    }

    .blog-post-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .blog-date {
      font-size: 14px;
      color: #0f5a4f;
      font-weight: 500;
    }

    .blog-category {
      background: rgba(15, 90, 79, 0.1);
      color: #0f5a4f;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-post-title {
      font-size: 20px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 15px;
      line-height: 1.3;
      margin-top: 0;
    }

    .blog-post-excerpt {
      font-size: 16px;
      color: #083531;
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .blog-read-more {
      color: #0f5a4f;
      font-weight: 600;
      text-decoration: none;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
      display: inline-block;
    }

    .blog-read-more:hover {
      color: #083531;
      transform: translateX(4px);
    }

    .blog-read-more::after {
      content: '→';
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .blog-read-more:hover::after {
      transform: translateX(4px);
    }

    .paperback-section {
      background: linear-gradient(135deg, #EFFCEE 0%, rgba(15, 90, 79, 0.1) 100%);
      padding: 120px 20px;
      position: relative;
      overflow: hidden;
    }

    .paperback-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(8,53,49,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(8,53,49,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(8,53,49,0.01)"/><circle cx="10" cy="50" r="0.5" fill="rgba(8,53,49,0.01)"/><circle cx="90" cy="30" r="0.5" fill="rgba(8,53,49,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
    }

    .paperback-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .paperback-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .paperback-image-frame {
      position: relative;
      border-radius: 25px;
      transition: transform 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .paperback-image-frame:hover {
      transform: translateY(-5px) rotateY(5deg);
    }

    .paperback-img {
      width: 350px;
      height: 450px;
      object-fit: cover;
      border-radius: 15px;
      transition: transform 0.3s ease;
      filter: grayscale(20%);
    }

    .coming-soon-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(239, 252, 238, 0.95);
      padding: 15px 30px;
      border-radius: 25px;
      backdrop-filter: blur(10px);
      border: 2px solid #0f5a4f;
    }

    .coming-soon-text {
      color: #083531;
      font-weight: bold;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .paperback-content {
      text-align: left;
      color: #083531;
    }

    .paperback-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .paperback-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 15px;
      line-height: 1.2;
      margin-top: 0;
    }

    .paperback-text {
      color: #083531;
    }

    .paperback-text p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .paperback-features {
      margin: 20px 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
      padding: 4px 0;
    }

    .feature-icon {
      font-size: 24px;
      margin-right: 15px;
      width: 40px;
      text-align: center;
    }

    .feature-text {
      font-size: 16px;
      font-weight: 500;
      opacity: 0.9;
      color: #083531;
    }

    .notify-button {
      background: #083531;
      color: white;
      font-weight: bold;
      font-size: 16px;
      padding: 15px 30px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 15px;
    }

    .notify-button:hover {
      background: #0f5a4f;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .book-section {
      text-align: center;
      padding: 100px 20px;
      background: #EFFCEE;
    }

    .book-img {
      max-width: 400px;
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .book-img:hover {
      transform: translateY(-10px);
    }

    .hero-image-container {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-book-img {
      max-width: 300px;
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      opacity: 0.9;
    }

    .hero-book-img:hover {
      transform: translateY(-5px);
      opacity: 1;
    }

    .faq-section {
      background: #EFFCEE;
      padding: 120px 20px;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .faq-badge {
      background: rgba(8, 53, 49, 0.1);
      color: #083531;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(8, 53, 49, 0.2);
    }

    .faq-title {
      font-size: 36px;
      font-weight: bold;
      color: #083531;
      margin-bottom: 20px;
      line-height: 1.2;
      margin-top: 0;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .faq-item {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(8, 53, 49, 0.1);
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
      padding: 25px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: rgba(8, 53, 49, 0.02);
    }

    .faq-question h3 {
      font-size: 18px;
      font-weight: 600;
      color: #083531;
      margin: 0;
      line-height: 1.4;
      flex: 1;
      padding-right: 20px;
    }

    .faq-icon {
      font-size: 24px;
      font-weight: bold;
      color: #0f5a4f;
      transition: transform 0.3s ease;
      min-width: 30px;
      text-align: center;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      background: rgba(8, 53, 49, 0.02);
    }

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

    .faq-answer p {
      padding: 0 30px 25px;
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
      color: #083531;
      opacity: 0.8;
    }

    .footer {
      background: #083531;
      color: white;
      padding: 60px 20px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    .footer-logo {
      text-align: left;
    }

    .footer-logo h3 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 8px;
      margin-top: 0;
      color: white;
    }

    .footer-logo p {
      font-size: 16px;
      opacity: 0.8;
      margin: 0;
      margin-bottom: 5px;
    }

    .footer-signature {
      font-size: 18px;
      font-weight: 600;
      color: #fbbf24 !important;
      opacity: 1 !important;
      font-style: italic;
      margin-top: 10px !important;
    }

    .footer-main-links {
      display: flex;
      gap: 40px;
    }

    .footer-main-links a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
      font-size: 16px;
      font-weight: 500;
    }

    .footer-main-links a:hover {
      opacity: 1;
      color: #fbbf24;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      margin: 0;
      opacity: 0.7;
      font-size: 14px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
    }

    .footer-bottom-links a {
      color: white;
      text-decoration: none;
      opacity: 0.7;
      font-size: 14px;
      transition: opacity 0.3s ease;
    }

    .footer-bottom-links a:hover {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .title {
        font-size: 32px;
      }
      
      .description {
        font-size: 16px;
      }

      .religions-icons {
        gap: 15px;
      }

      .religion-svg {
        width: 40px;
        height: 40px;
      }

      .about-title {
        font-size: 28px;
      }

      .about-text {
        font-size: 16px;
      }

      .whats-inside-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .whats-inside-content {
        text-align: center;
      }

      .tablet-frame {
        width: 280px;
      }

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

      .tablet-screen {
        width: 240px;
        height: 400px;
      }

      .book-stats {
        justify-content: center;
        gap: 60px;
      }

      .stat-number {
        font-size: 36px;
      }

      .author-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .author-content {
        text-align: center;
      }

      .author-photo-placeholder {
        width: 300px;
        height: 380px;
      }

      .author-title {
        font-size: 28px;
      }

      .author-text p {
        font-size: 16px;
      }

      .blog-posts {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .blog-post {
        margin: 0 auto;
        max-width: 400px;
      }

      .blog-title {
        font-size: 28px;
      }

      .blog-post-title {
        font-size: 18px;
      }

      .blog-post-excerpt {
        font-size: 15px;
      }

      .paperback-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .paperback-content {
        text-align: center;
      }

      .paperback-img {
        width: 500px;
        height: auto;
      }

      .paperback-title {
        font-size: 28px;
      }

      .paperback-text p {
        font-size: 16px;
      }

      .feature-item {
        justify-content: center;
      }

      .hero-book-img {
        max-width: 250px;
      }

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

      .footer-logo {
        text-align: center;
      }

      .footer-main-links {
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .footer-bottom-links {
        gap: 20px;
      }

      .faq-title {
        font-size: 28px;
      }

      .faq-question {
        padding: 20px 25px;
      }

      .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
      }

      .faq-answer p {
        padding: 0 25px 20px;
        font-size: 15px;
      }
    }

.religions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 50px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.religion-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.2));
}

.religion-img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* Random offsets for natural flow */
.offset-small {
  transform: translateY(8px);
}
.offset-large {
  transform: translateY(-10px);
}