@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

/* Hide all scrollbars */
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 1.75rem;
  color: #303a4d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1E40AF;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
  
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

@media (max-width: 768px) {
  [class*="__container"] {
    padding: 0 1rem;
  }
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: #fff;
  background-color: #303a4d;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.button:hover {
  background-color: #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.3);
}

@media (max-width: 768px) {
  .button {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  will-change: auto;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

@media (max-width: 1200px) {
  .header__container {
    padding: 0 1.5rem;
  }
}

/* Logo */
.header__logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 1.75rem;
  color: #303a4d;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1001;
  white-space: nowrap;
  position: relative;
}

@media (max-width: 768px) {
  .header__logo {
    z-index: 999;
  }
  
  .menu-open .header__logo {
    z-index: 999;
  }
}

.header__logo:hover {
  color: #1E40AF;
}

/* Desktop Navigation */
.header__nav {
  display: none;
}

@media (min-width: 769px) {
  .header__nav {
    display: block;
    flex: 1;
    margin: 0 3rem;
  }

  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__menu-item {
    margin: 0;
  }

  .header__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #303a4d;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
  }

  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E40AF;
    transition: width 0.3s ease;
  }

  .header__link:hover,
  .header__link.active {
    color: #1E40AF;
  }

  .header__link:hover::after,
  .header__link.active::after {
    width: 100%;
  }
}

/* Mobile Menu Toggle Button */
.header__menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1003;
  width: 40px;
  height: 40px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
    z-index: 1003;
  }
  
  .menu-open .header__menu-toggle {
    z-index: 999;
    opacity: 0;
    pointer-events: none;
  }
}

.header__menu-icon {
  width: 24px;
  height: 2px;
  background-color: #303a4d;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #303a4d;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}

.header__menu-icon::before {
  top: -8px;
}

.header__menu-icon::after {
  bottom: -8px;
}

.menu-open .header__menu-icon {
  background: transparent;
}

.menu-open .header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .header__menu-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation Overlay */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .header__mobile-nav {
    display: block;
  }

  .menu-open .header__mobile-nav {
    transform: translateX(0);
  }
}

.header__mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header__menu-close {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 32px;
  line-height: 1;
  color: #303a4d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
  font-weight: 300;
}

.header__menu-close:hover {
  color: #1E40AF;
  transform: scale(1.1);
}

.header__mobile-logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 1.5rem;
  color: #303a4d;
  text-decoration: none;
}

.header__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header__mobile-item {
  margin: 0;
}

.header__mobile-link {
  display: block;
  padding: 1rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #303a4d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__mobile-link:hover,
.header__mobile-link.active {
  color: #1E40AF;
  background: rgba(30, 64, 175, 0.05);
  padding-left: 1.5rem;
}

/* Mobile Logo Size */
@media (max-width: 768px) {
  .header__logo {
    font-size: 1.35rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 999;
  }
  
  .menu-open .header__logo {
    z-index: 999;
  }

  .header__container {
    min-height: 4.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .icon-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 769px) {
  .icon-menu {
    display: none !important;
  }
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

/* ****************PAGES**************** */
.page__main {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* *****************HOME HERO**************** */

.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  display: flex;
  align-items: center;
  padding-top: 5.75rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 5.75rem);
  position: relative;
  z-index: 1;
  contain: layout style paint;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  contain: layout style;
}

.hero__name {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__bio {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 3rem;
  max-width: 32rem;
  letter-spacing: 0.01em;
}

.hero__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  contain: layout style;
}

.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 3px solid rgba(184, 134, 11, 0.3);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible;
}

.hero__badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.hero__badge::before {
  content: '🌿';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  opacity: 0.6;
  z-index: 1;
}

.hero__badge::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(184, 134, 11, 0.2);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  z-index: -1;
}

.badge__icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  line-height: 1;
  z-index: 2;
  position: relative;
}

.badge__text {
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: #303a4d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.hero__image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 1;
  contain: layout style paint;
}

.hero__image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  filter: none;
  background: transparent;
  mix-blend-mode: normal;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
}

.outro_home {
  background: url("../img/home/hero-background.jpg") center / cover no-repeat;
}

/* ************FEATURED BOOK************ */

.featured-book {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.featured-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.featured-book__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  .featured-book__container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .featured-book__container {
    padding: 0 1rem;
    gap: 2rem;
  }
}

.featured-book__title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a5568;
  margin-bottom: 1rem;
}

.featured-book__book-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.featured-book__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.featured-book__description p {
  margin-bottom: 1rem;
}

.featured-book__description ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.featured-book__description li {
  list-style: disc;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.featured-book__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.featured-book__button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.featured-book__button--secondary {
  background: transparent;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.featured-book__cover {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.featured-book__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
  filter: none;
  border-radius: 0;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .featured-book__image {
    max-width: 100%;
  }
}

.book-cover-placeholder {
  width: 100%;
  max-width: 400px;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
  line-height: 1.3;
}

/* ************ABOUT THE BOOK************ */

.about-book {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  padding: 8rem 0;
  position: relative;
}

.about-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e1e4eb, transparent);
}

/* ************VIDEO TRAILER************ */

.video-trailer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 8rem 0;
  position: relative;
}

.video-trailer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.video-trailer__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.video-trailer__title {
  text-align: center;
  margin-bottom: 4rem;
}

.video-trailer__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.video-trailer__wrapper {
  width: 100%;
  max-width: 900px;
}

.video-trailer__video {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-trailer__video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .video-trailer {
    padding: 4rem 0;
  }
  
  .video-trailer__container {
    padding: 0 1rem;
  }
  
  .video-trailer__wrapper {
    max-width: 100%;
  }
  
  .video-trailer__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .video-trailer__description p {
    font-size: 1rem;
  }
}

.video-trailer__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-trailer__description {
  max-width: 700px;
  text-align: center;
}

.video-trailer__description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about-book__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-book__header {
  text-align: center;
  margin-bottom: 5rem;
}

.about-book__title {
  margin-bottom: 1rem;
  color: #2d3748;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.about-book__title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #8b4513, #a0522d);
  border-radius: 2px;
}

.about-book__subtitle {
  font-size: 1.3rem;
  color: #8b4513;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
  font-weight: 400;
}

.about-book__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-book__main {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.about-book__text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4a5568;
  font-weight: 400;
}

.about-book__text p {
  margin-bottom: 2rem;
  text-align: left;
}

.about-book__text p:last-child {
  margin-bottom: 0;
}

.about-book__intro {
  font-size: 1.2rem;
  line-height: 1.85;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 2rem !important;
}

.about-book__intro em {
  font-style: italic;
  color: #8b4513;
  font-weight: 600;
}

.about-book__highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-left: 4px solid #8b4513;
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2d3748;
  font-weight: 500;
  margin-top: 2rem !important;
}

.about-book__highlight em {
  font-style: italic;
  color: #8b4513;
  font-weight: 600;
}

.about-book__sidebar {
  position: sticky;
  top: 2rem;
}

.book-info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.book-info-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.book-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.book-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.book-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.book-info-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.book-info-value {
  font-size: 1rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.5;
}

/* ************ABOUT THE AUTHOR************ */

.author-highlights {
  background: #fff;
  padding: 8rem 0;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.6s, transform 0.6s;
}

.author-highlights .container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.author-highlights .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  color: #303a4d;
}

.author-highlights-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: stretch;
}

.author-highlights-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  order: 2;
  height: 100%;
}

.author-highlight-photo {
  width: 100%;
  max-width: 400px;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
  align-content: stretch;
}

.highlights-grid--left {
  order: 1;
}

.highlights-grid--right {
  order: 3;
}

.highlight-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e1e4eb;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  color: #1e3a8a;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.highlight-icon i {
  color: #1e3a8a;
  font-size: 3rem;
  display: inline-block;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.highlight-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Legacy styles for backward compatibility */
.about-author {
  background: #fff;
  padding: 8rem 0;
}

.about-author__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-author__image {
  position: relative;
}

.about-author__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-author__image img {
    max-width: 100%;
  }
}

.about-author__title {
  margin-bottom: 2rem;
}

.about-author__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 2.5rem;
}

.about-author__text p {
  margin-bottom: 1.5rem;
}

.about-author__social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #303a4d;
  border-radius: 50%;
  color: #303a4d;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: #303a4d;
  color: #fff;
  transform: translateY(-2px);
}

/* ************REVIEWS************ */

.reviews {
  background: #F5F5F5;
  padding: 8rem 0;
}

.reviews__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.reviews__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #303a4d;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reviews__item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-reviews__stars {
  font-size: 1.2rem;
  color: #ffa500;
  margin-bottom: 1.5rem;
}

.item-reviews__text-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.item-reviews__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin: 0;
  transition: max-height 0.3s ease;
}

.item-reviews__text.truncated {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.item-reviews__text.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 60%, #fff);
  pointer-events: none;
}

.item-reviews__read-more {
  display: none;
  margin-top: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: #303a4d;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.item-reviews__read-more:hover {
  color: #1e3a8a;
}

.item-reviews__read-more.show {
  display: inline-block;
}

.item-reviews__author {
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.25rem;
}

.item-reviews__geo {
  font-size: 0.9rem;
  color: #666;
}

/* ************BOOK EXCERPT************ */

.excerpt {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.excerpt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.excerpt__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.excerpt__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #303a4d;
}

.excerpt__content {
  max-width: 1000px;
  margin: 0 auto;
}

.excerpt__quote {
  background: #fff;
  padding: 4rem 5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.excerpt__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: #667eea;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-weight: 700;
}

.excerpt__text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-left: 3rem;
}

.excerpt__text:last-of-type {
  margin-bottom: 2.5rem;
}

.excerpt__author {
  font-size: 1.1rem;
  font-weight: 600;
  color: #303a4d;
  text-align: right;
  font-style: normal;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e1e4eb;
}

.excerpt__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.excerpt__button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.excerpt__button--secondary {
  background: transparent;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.excerpt__button--secondary:hover {
  background: #303a4d;
  color: #fff;
}

/* ************CONNECT WITH ME************ */

.connect {
  background: #fafafa;
  padding: 8rem 0;
}

.connect__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ************BLOG PAGE************ */

.blog-page {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.blog-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(30,64,175,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.blog-page__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.blog-page__posts {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-post {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  border: 2px solid transparent;
  position: relative;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.blog-post:hover::before {
  transform: scaleX(1);
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.2);
  border-color: #E0E7FF;
}

.blog-post__image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.blog-post__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(30, 64, 175, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.blog-post:hover .blog-post__image::after {
  opacity: 1;
}

.blog-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post:hover .blog-post__image img {
  transform: scale(1.1);
}

.blog-post__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F3F4F6;
}

.blog-post__date {
  color: #1E40AF;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post__date::before {
  content: '📅';
  font-size: 1rem;
}

.blog-post__category {
  color: #fff;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  transition: transform 0.3s;
}

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

.blog-post__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  transition: color 0.3s;
}

.blog-post:hover .blog-post__title {
  color: #1e3a8a;
}

.blog-post__excerpt {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 400;
}

.blog-post__link {
  color: #1E40AF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #EFF6FF;
  border-radius: 25px;
  border: 2px solid transparent;
}

.blog-post__link::after {
  content: '→';
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.blog-post__link:hover {
  color: #fff;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  border-color: #1E40AF;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.blog-post__link:hover::after {
  transform: translateX(5px);
}

/* ************BLOG DETAIL PAGE************ */

.blog-detail-page {
  background: #fff;
  padding-top: 160px;
  padding-bottom: 6rem;
  min-height: 100vh;
}

/* Blog Post Single Page */
.blog-post-header {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  padding: 8rem 2rem 4rem;
  color: #fff;
  overflow-x: hidden;
}

.blog-post-header__container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: hidden;
}

.blog-post-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb__link:hover {
  color: #fff;
}

.breadcrumb__separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb__current {
  color: #fff;
  font-weight: 500;
}

.blog-post-header__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-post-header__date,
.blog-post-header__category {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-post-header__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-post-image__container {
  max-width: 1200px;
  margin: -3rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.blog-post-image__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: block;
}

.blog-post-content {
  padding: 6rem 2rem;
  background: #fff;
}

.blog-post-content__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.blog-post-content__article {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a5568;
}

.blog-post-content__article p {
  margin-bottom: 1.5rem;
}

.blog-post-content__article em {
  font-style: italic;
  color: #1E40AF;
}

.blog-post-content__cta {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  padding: 3rem;
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
}

.blog-post-content__cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.blog-post-content__cta p {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

.blog-post-content__sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.sidebar-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.sidebar-card__bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.sidebar-card__link {
  color: #1E40AF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.sidebar-card__link:hover {
  color: #1e3a8a;
}

.sidebar-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card__list li {
  margin-bottom: 0.75rem;
}

.sidebar-card__list-link {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.sidebar-card__list-link:hover {
  color: #1E40AF;
}

.sidebar-card--cta {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  color: #fff;
  text-align: center;
}

.sidebar-card--cta .sidebar-card__title {
  color: #fff;
}

.sidebar-card--cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.blog-post-share {
  background: #F9FAFB;
  padding: 3rem 2rem;
}

.blog-post-share__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-post-share__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.blog-post-share__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-post-share__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 50px;
  color: #4a5568;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.blog-post-share__button:hover {
  background: #1E40AF;
  border-color: #1E40AF;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.blog-post-back {
  background: #fff;
  padding: 2rem;
}

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

.blog-post-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1E40AF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.blog-post-back__link:hover {
  color: #1e3a8a;
  transform: translateX(-5px);
}

.blog-detail__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-detail__header {
  margin-bottom: 3rem;
}

.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1E40AF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.blog-detail__back:hover {
  color: #1e3a8a;
}

.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-detail__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin: 0;
}

.blog-detail__image {
  width: 100%;
  margin-bottom: 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-detail__content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a5568;
}

.blog-detail__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.blog-detail__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E40AF;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.blog-detail__content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.blog-detail__intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #2d3748;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  border-left: 4px solid #1E40AF;
  border-radius: 8px;
}

.blog-detail__quote {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  padding: 3rem;
  border-radius: 16px;
  margin: 3rem 0;
  border-left: 5px solid #1E40AF;
  position: relative;
}

.blog-detail__quote::before {
  content: '"';
  font-size: 6rem;
  font-family: 'Playfair Display', serif;
  color: #1E40AF;
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
}

.blog-detail__quote p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1E40AF;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 1;
}

.blog-detail__footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e1e4eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-detail__tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: #EFF6FF;
  color: #1E40AF;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-detail__share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-detail__share span {
  font-weight: 600;
  color: #4a5568;
}

.blog-detail__share a {
  color: #1E40AF;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.blog-detail__share a:hover {
  background: #EFF6FF;
  border-color: #1E40AF;
}

.blog-detail__navigation {
  background: #F9FAFB;
  padding: 4rem 0;
  margin-top: 4rem;
  border-top: 2px solid #e1e4eb;
}

.blog-detail__nav-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-detail__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-detail__nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #1E40AF;
}

.blog-detail__nav-link span:first-child {
  color: #1E40AF;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-post-title {
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.blog-detail__nav-link--next {
  text-align: right;
  align-items: flex-end;
}

.blog-detail__nav-link--prev {
  text-align: left;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .blog-detail__title {
    font-size: 2.5rem;
  }
  
  .blog-detail__content h2 {
    font-size: 1.75rem;
  }
  
  .blog-detail__nav-container {
    grid-template-columns: 1fr;
  }
  
  .blog-detail__nav-link--next {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .blog-detail-page {
    padding-top: 150px;
    padding-bottom: 4rem;
  }
  
  .blog-detail__container {
    padding: 0 1rem;
  }
  
  .blog-detail__title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .blog-detail__image {
    margin-bottom: 2rem;
  }
  
  .blog-detail__intro {
    font-size: 1.1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .blog-detail__content {
    font-size: 1.05rem;
  }
  
  .blog-detail__content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  
  .blog-detail__content h3 {
    font-size: 1.3rem;
  }
  
  .blog-detail__quote {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .blog-detail__quote p {
    font-size: 1.2rem;
  }
  
  .blog-detail__quote::before {
    font-size: 4rem;
    top: -0.5rem;
    left: 0.5rem;
  }
  
  .blog-detail__footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
    padding-top: 2rem;
  }
  
  .blog-detail__share {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-detail__navigation {
    padding: 3rem 0;
    margin-top: 3rem;
  }
  
  .blog-detail__nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .blog-detail-page {
    padding-top: 120px;
  }
  
  .blog-detail__title {
    font-size: 1.75rem;
  }
  
  .blog-detail__content {
    font-size: 1rem;
  }
  
  .blog-detail__intro {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .blog-detail__content h2 {
    font-size: 1.3rem;
  }
  
  .blog-detail__content h3 {
    font-size: 1.1rem;
  }
  
  .blog-detail__quote p {
    font-size: 1.1rem;
  }
}

/* ************FAMILY PAGE************ */

.family-page {
  background: #fafafa;
  padding: 6rem 0;
}

.family-page__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.family-page__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.family-page__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.family-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.family-section--left {
  grid-template-columns: 1.5fr 1fr;
}

.family-section--right {
  grid-template-columns: 1fr 1.5fr;
}

.family-section--right .family-section__image {
  order: 1;
}

.family-section--right .family-section__text {
  order: 2;
}

.family-section__text {
  display: flex;
  align-items: center;
}

.family-section__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

.family-section__image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

.family-section__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.family-section__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 992px) {
  .family-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .family-section--right .family-section__image {
    order: 1;
  }

  .family-section--right .family-section__text {
    order: 2;
  }

  .family-section__text {
    text-align: center;
  }
}

.connect__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #8b4513;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.connect__dot {
  color: #dc3545;
  font-size: 1.2em;
}

.connect__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.connect__card {
  background: #f5f5dc;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e8e8d8;
}

.connect__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.connect__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.connect__platform {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b4513;
  margin-bottom: 0.75rem;
}

.connect__description {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* ************PRESS & MEDIA************ */

.press {
  background: #fff;
  padding: 8rem 0;
}

.press__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.press__title {
  text-align: center;
  margin-bottom: 4rem;
}

.press__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.press__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 2rem;
}

.press__articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.press__article {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1e4eb;
}

.press__article:last-child {
  border-bottom: none;
}

.press__article h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.75rem;
}

.press__article p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.press__link {
  color: #303a4d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.press__link:hover {
  color: #667eea;
}

.press__button {
  margin-top: 1.5rem;
}

/* ************GALLERY************ */

.gallery {
  background: #f8f9fa;
  padding: 8rem 0;
}

.gallery__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery__title {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ************CALL TO ACTION************ */

/* ************GET YOUR COPY TODAY************ */

.get-copy {
  background: #f8f9fa;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.get-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.get-copy__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.get-copy__badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B9D 0%, #FF8EAB 100%);
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.get-copy__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.decoration-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.get-copy__title {
  color: #2d3748;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
}

.get-copy__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #4a5568;
  border-radius: 2px;
}

.get-copy__text {
  max-width: 650px;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
}

.get-copy__formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.format-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #4a5568;
  transform: scaleX(0);
  transition: transform 0.4s;
}

.format-card:hover::before {
  transform: scaleX(1);
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #e1e4eb;
}

.format-card__icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.format-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

.format-card:hover .format-card__name {
  color: #1a202c;
}

.format-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.format-card__price::before {
  content: '$';
  font-size: 1.2rem;
  vertical-align: top;
  margin-right: 2px;
}

.format-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.format-card__button svg {
  width: 16px;
  height: 16px;
}

.format-card__button--ebook {
  background: #4a5568;
}

.format-card__button--ebook:hover {
  background: #2d3748;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.format-card__button--paperback {
  background: #4a5568;
}

.format-card__button--paperback:hover {
  background: #2d3748;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.format-card__button--hardcover {
  background: #4a5568;
}

.format-card__button--hardcover:hover {
  background: #2d3748;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.format-card__button--audiobook {
  background: #4a5568;
}

.format-card__button--audiobook:hover {
  background: #2d3748;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta {
  background: linear-gradient(135deg, #D3D3D3 0%, #E0E0E0 100%);
  padding: 10rem 0;
  color: #2d3748;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(30,64,175,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  color: #1E40AF;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
}

.cta__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  border-radius: 2px;
}

.cta__text {
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  color: #4a5568;
  font-weight: 400;
}

.cta__book-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.book-format-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.book-format-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-format__logo {
  width: 120px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.book-format__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.cta__actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__button {
  padding: 1.4rem 3.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  background: #1E40AF;
  color: #fff;
  border: 2px solid #1E40AF;
  border-radius: 30px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta__button:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.cta__button--secondary {
  background: transparent;
  color: #1E40AF;
  border: 2px solid #1E40AF;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.cta__button--secondary:hover {
  background: #1E40AF;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

/* ************ABOUT**************** */

.main_about {
  background: #fff;
}

.main__subtitle_about {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.main__subtitle_about .subtitle-icon {
  color: #FFD700;
  font-size: 1.2rem;
}

.main__title_about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.about-title-1 {
  color: #4a5568;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.about-title-2 {
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.2;
  display: block;
}

.main__text_about {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 50rem;
  margin: 0 auto;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/about-hero.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: linear-gradient(to bottom, #87CEEB 0%, #B0E0E6 50%, #E0F6FF 100%);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 50%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../img/services/services-hero.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

/* ************FOOTER************ */

.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #303a4d 100%);
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Footer Top Section */
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer__brand {
  max-width: 400px;
}

.footer__logo {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer__description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

/* Links Section */
.footer__links-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  justify-items: center;
}

.footer__links-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: center;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, transparent);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__links li {
  margin: 0;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer__link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #3B82F6;
}

.footer__link:hover {
  color: #fff;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer__link:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
}

.footer__copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__copyright p {
  margin: 0;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.footer__badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer__links-section {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer__container {
    padding: 0 1.25rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer__brand {
    grid-column: 1;
    text-align: center;
  }

  .footer__logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer__description {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em;
  }

  .footer__social {
    justify-content: center;
    gap: 0.75rem;
  }

  .footer__social-link {
    width: 38px;
    height: 38px;
  }

  .footer__social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer__links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }

  .footer__links-column {
    text-align: center;
  }

  .footer__heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .footer__heading::after {
    width: 30px;
  }

  .footer__links {
    gap: 0.625rem;
  }

  .footer__link {
    font-size: 0.875rem;
  }

  .footer__link:hover {
    padding-left: 0;
    transform: translateX(0);
  }

  .footer__link::before {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .footer__copyright {
    text-align: center;
    font-size: 0.8rem;
  }

  .footer__badge {
    padding: 0.4rem 1rem;
  }

  .footer__badge-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer__container {
    padding: 0 1rem;
  }

  .footer__top {
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .footer__logo {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .footer__description {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.6em;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }

  .footer__social-link svg {
    width: 16px;
    height: 16px;
  }

  .footer__links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    justify-items: center;
  }

  .footer__links-column {
    text-align: center;
  }

  .footer__heading {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .footer__heading::after {
    left: 0;
    transform: none;
  }

  .footer__links {
    gap: 0.5rem;
  }

  .footer__link {
    font-size: 0.8125rem;
  }

  .footer__bottom {
    gap: 0.875rem;
    padding-top: 1rem;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }

  .footer__badge {
    padding: 0.35rem 0.875rem;
  }

  .footer__badge-text {
    font-size: 0.7rem;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 45rem;
  text-align: center;
  color: #4a5568;
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0 auto 1rem;
  font-weight: 400;
}

.main__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #1E40AF;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.subtitle-icon {
  font-size: 1.4rem;
  display: inline-block;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.subtitle-icon:first-child {
  color: #FFD700;
}

.subtitle-icon:last-child {
  color: #FF6B9D;
}

.main__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}

.title-line-1 {
  color: #000000;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: block;
  font-size: 5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.title-line-2 {
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: block;
  text-align: center;
  font-size: 5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(30, 64, 175, 0.1);
  position: relative;
  transition: all 0.3s;
}

.title-line-2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  border-radius: 2px;
}

.title-dot {
  color: #FF6B9D;
  display: inline-block;
}

.main__container_pages {
  padding-top: 120px;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .main__container_pages {
    padding-top: 100px;
    padding-bottom: 1.5rem;
  }
}

.main_pages {
  min-height: auto !important;
  background: #fff;
}

.main_services {
  background: #fff;
}

.main_blog {
  background: #fff;
}

.main__title_blog {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
}

.main__title_family {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
}

/* ************SHARE YOUR SILVER LINING PAGE************ */
.main_silver {
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.main__subtitle_silver {
  color: #64748B;
  font-size: 1rem;
  font-weight: 600;
}

.main__subtitle_silver .subtitle-icon {
  color: #94A3B8;
  font-size: 1.2rem;
}

.main__title_silver .title-line-1 {
  color: #1e293b;
  font-size: 4rem;
}

.main__title_silver .title-line-2 {
  color: #1E40AF;
  font-size: 4rem;
}

.main__text_silver {
  max-width: 42rem;
  margin: 0 auto;
  color: #475569;
  font-size: 1.2rem;
  line-height: 1.75;
  text-align: center;
}

.silver-intro {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid #E2E8F0;
}

.silver-intro__container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.silver-intro__heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.silver-intro__lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.silver-intro__lead em {
  font-style: italic;
  color: #1E40AF;
}

.silver-intro__text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 2rem;
}

.silver-intro__quote {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-left: 4px solid #1E40AF;
  border-radius: 0 12px 12px 0;
}

.silver-intro__quote blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
  color: #1e293b;
  line-height: 1.65;
}

.silver-contact .contact__container {
  align-items: stretch;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.silver-contact__form-wrapper {
  flex: 1;
  min-width: 0;
}

.silver-contact .contact__title {
  margin-bottom: 1.5rem;
}

.silver-contact .contact__text {
  margin-bottom: 2rem;
}

.contact__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.contact__label .required {
  color: #DC2626;
}

.contact__label .optional {
  font-weight: 400;
  color: #94A3B8;
  font-size: 0.9rem;
}

.silver-textarea {
  min-height: 220px;
  resize: vertical;
}

.silver-consent {
  margin-top: 0.5rem;
}

.silver-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  cursor: pointer;
}

.silver-checkbox {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  accent-color: #1E40AF;
}

.silver-submit {
  margin-top: 1rem;
}

.silver-sidebar {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.silver-sidebar__card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  position: relative;
  z-index: 1;
}

.silver-sidebar__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #EFF6FF;
}

.silver-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.silver-sidebar__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
}

.silver-sidebar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #1E40AF;
  border-radius: 50%;
}

.silver-sidebar__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .silver-sidebar {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .main__title_silver .title-line-1,
  .main__title_silver .title-line-2 {
    font-size: 2.5rem;
  }

  .main__text_silver {
    font-size: 1.05rem;
  }

  .silver-intro {
    padding: 3rem 0;
  }

  .silver-intro__container {
    padding: 0 1rem;
  }

  .silver-intro__heading {
    font-size: 1.65rem;
  }

  .silver-intro__lead,
  .silver-intro__text {
    font-size: 1rem;
  }

  .silver-intro__quote {
    padding: 1.25rem 1.5rem;
  }

  .silver-intro__quote blockquote {
    font-size: 1rem;
  }

  .silver-contact .contact__container {
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .silver-sidebar__card {
    padding: 1.5rem;
  }
}

/* ************LIFE JOURNEY TIMELINE************ */

.life-journey {
  background: #fff;
  padding: 8rem 0;
}

.life-journey__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.life-journey__title {
  text-align: center;
  margin-bottom: 5rem;
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  position: relative;
}

.life-journey__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
}

.life-journey__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #1E40AF, #1e3a8a);
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: #1E40AF;
  border: 3px solid #1e3a8a;
  border-radius: 50%;
  z-index: 2;
}

.timeline__content {
  padding-bottom: 1rem;
}

.timeline__year {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E40AF;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.timeline__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.timeline__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* ************ACHIEVEMENTS & MILESTONES************ */

.achievements {
  background: #D3D3D3;
  padding: 8rem 0;
}

.achievements__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.achievements__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.achievements__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.achievement-card__number {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.achievement-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.achievement-card__description {
  font-size: 0.95rem;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

/* ************PERSONAL LIFE************ */

.personal-life {
  background: #fafafa;
  padding: 8rem 0;
}

.personal-life__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.personal-life__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.personal-life__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.personal-life__card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8d8;
  transition: transform 0.3s, box-shadow 0.3s;
}

.personal-life__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.personal-life__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.personal-life__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

/* ************THE WRITING JOURNEY************ */

.writing-journey {
  background: #fff;
  padding: 8rem 0;
}

.writing-journey__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.writing-journey__title {
  text-align: center;
  margin-bottom: 4rem;
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.writing-journey__content {
  max-width: 900px;
  margin: 0 auto;
}

.writing-journey__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 2rem;
  text-align: left;
}

.writing-journey__text:last-child {
  margin-bottom: 0;
}

/* ************AUTHOR DETAILS************ */

.author-details {
  background: #f8f9fa;
  padding: 6rem 0;
}

.author-details__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.author-details__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.author-details__item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.author-details__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.author-details__item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

/* ****************Book PAGE**************** */
.Book-page {
  background: #E8E8E8;
}

.Book-page__container {
  padding-top: 160px;
  padding-bottom: 100px;
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.Book-page__item {
  margin-bottom: 100px;
  background: #fff;
  padding: 5rem 4rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.Book-page__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.Book-page__item:not(:last-child) {
  margin-bottom: 100px;
}

.Book-page__column {
  display: flex;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 768px) {
  .Book-page__column {
    flex-direction: column;
    gap: 2rem;
  }
  
  .Book-page__img {
    width: 100%;
    max-width: 100%;
  }
}

.Book-page__content {
  flex: 1;
}

.Book-page__title {
  margin-bottom: 2rem;
  color: #2d3748;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
}

.Book-page__text {
  margin-bottom: 2.5rem;
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a5568;
}

.Book-page__text p:not(:last-child) {
  margin-bottom: 1.8rem;
}

.Book-page__meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid #e1e4eb;
  border-bottom: 1px solid #e1e4eb;
}

.Book-page__genre {
  font-size: 1rem;
  font-weight: 700;
  color: #1E40AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  background: #EFF6FF;
  border-radius: 25px;
}

.Book-page__rating {
  font-size: 1.4rem;
  color: #ffa500;
  letter-spacing: 2px;
}

.Book-page__button {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 55, 72, 0.2);
}

.Book-page__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
}

.Book-page__img {
  flex: 0 0 450px;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Book-page__book-cover {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  mix-blend-mode: multiply;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .Book-page__book-cover {
    max-width: 100%;
  }
}

.Book-page__item:hover .Book-page__book-cover {
  transform: scale(1.02);
}

.Book-page__img .book-cover-placeholder {
  width: 100%;
  height: 600px;
  max-width: 400px;
}

/* Key Themes Section */
.Book-page__themes {
  margin: 8rem 0;
  padding: 6rem 0;
  background: #F5F5F5;
  position: relative;
}

.Book-page__section-title {
  text-align: center;
  margin-bottom: 5rem;
  color: #2d3748;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.Book-page__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  border-radius: 2px;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.theme-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.theme-card:hover::before {
  transform: scaleX(1);
}

.theme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.2);
  border-color: #E0E7FF;
}

.theme-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.theme-card:hover .theme-icon {
  transform: scale(1.15) rotate(5deg);
}

.theme-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1E40AF;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}

.theme-card:hover .theme-title {
  color: #1e3a8a;
}

.theme-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  font-weight: 400;
}

/* Testimonials Section */
.Book-page__testimonials {
  margin: 8rem 0;
  padding: 6rem 0;
  background: #fff;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: #F9FAFB;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #F3F4F6;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: #1E40AF;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.15);
  border-color: #E0E7FF;
}

.testimonial-stars {
  font-size: 1.4rem;
  color: #ffa500;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.testimonial-text-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 1;
  transition: max-height 0.3s ease;
}

.testimonial-text.truncated {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.testimonial-text.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(249, 250, 251, 0), rgba(249, 250, 251, 0.95) 60%, #F9FAFB);
  pointer-events: none;
}

.testimonial-read-more {
  display: none;
  margin-top: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: #1E40AF;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.testimonial-read-more:hover {
  color: #1e3a8a;
}

.testimonial-read-more.show {
  display: inline-block;
}

.testimonial-author {
  font-weight: 700;
  color: #1E40AF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: #fff;
}

.main__subtitle_contact {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.main__subtitle_contact .subtitle-icon {
  color: #FFD700;
  font-size: 1.2rem;
}

.main__title_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.contact-title-1 {
  color: #4a5568;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.contact-title-2 {
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.2;
  display: block;
}

.main__text_contact {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 50rem;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.page__contact {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  position: relative;
  overflow: hidden;
}

.page__contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(30,64,175,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.contact__title {
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.5rem;
  color: #1E40AF;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}

.contact__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1E40AF, #3B82F6);
  border-radius: 2px;
}

.contact__contacts {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #F3F4F6;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s;
  width: 100%;
  background: #F9FAFB;
  border: 2px solid transparent;
}

.connect-contact__item:hover {
  background: #EFF6FF;
  border-color: #E0E7FF;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
}

.connect-contact__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.connect-contact__item:hover .connect-contact__icon {
  transform: scale(1.1) rotate(5deg);
}

.connect-contact__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.connect-contant__type {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1E40AF;
  text-transform: uppercase;
  line-height: 110%;
}

.connect-contact__label {
  font-size: 1.15rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #4a5568;
  font-weight: 500;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact__link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 12px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.contact__link:hover {
  background: #EFF6FF;
  border-color: #E0E7FF;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.contact__link img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.contact__link:hover img {
  transform: scale(1.1);
}

.contact__info {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.contact__text {
  max-width: 100%;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2.5rem;
}

.contact__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contact__form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact__form {
    gap: 1.5rem;
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact__input,
.contact__textarea {
  padding: 1.25rem 1.5rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #303a4d;
  transition: all 0.3s;
  background: #F9FAFB;
  width: 100%;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #1E40AF;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.contact__textarea {
  resize: vertical;
  min-height: 180px;
  font-family: inherit;
}

/* Screen reader only class for labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form success/error states */
.contact__form-message {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.contact__form-message--success {
  background-color: #D1FAE5;
  color: #065F46;
  border: 2px solid #10B981;
}

.contact__form-message--error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 2px solid #EF4444;
}

.contact__submit {
  align-self: flex-start;
  padding: 1.3rem 3.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.contact__submit:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

@media (max-width: 768px) {
  .contact__submit {
    align-self: stretch;
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }
}

iframe {
  width: 100%;
  max-width: 100%;
  height: 482px;
  filter: grayscale(100%);
  border: none;
}

@media (max-width: 768px) {
  iframe {
    height: 300px;
  }
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 1200px) {
  .hero__container {
    padding: 0 1.5rem;
  }
  
  .hero__name {
    font-size: 4.5rem;
  }
  
  .featured-book__container {
    padding: 0 2rem;
  }
  
  .about-book__container,
  .video-trailer__container,
  .author-highlights .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__name {
    font-size: 4rem;
  }
  
  .hero__bio {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__badges {
    justify-content: center;
  }

  .hero__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
  }

  .featured-book__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .featured-book__book-title {
    font-size: 2.5rem;
  }
  
  .featured-book__description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .featured-book__actions {
    justify-content: center;
  }

  .about-book__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-book__sidebar {
    position: relative;
    top: 0;
  }

  .about-book__main {
    padding: 2rem;
  }

  .about-book__highlight {
    padding: 1.5rem;
  }

  .about-author__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-author__image {
    order: -1;
    text-align: center;
  }

  .author-highlights-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .author-highlights-image {
    order: -1;
  }

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

  .reviews__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .press__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
  
  .get-copy__formats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }


  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .personal-life__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .personal-life__card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta__book-formats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .get-copy__formats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .format-card--hardcover,
  .format-card--audiobook {
    grid-column: span 1;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .header__container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0 1rem;
    min-height: 4.5rem;
  }
  
  .header__left {
    display: none;
  }
  
  .header__logo {
    justify-self: center;
    font-size: 1.25rem !important;
  }
  
  .header__right .menu__body {
    display: none;
  }
  
  .icon-menu {
    display: block !important;
  }

  .hero {
    padding-top: 4.5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    text-align: center;
    min-height: auto;
  }

  .hero__name {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero__bio {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero__badges {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero__badge {
    width: 100px;
    height: 100px;
  }
  
  .badge__icon {
    font-size: 1.5rem;
  }
  
  .badge__text {
    font-size: 0.65rem;
  }

  .hero__image {
    order: -1;
    max-width: 350px;
    margin: 0 auto;
  }

  .hero__image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
  }

  .featured-book {
    padding: 4rem 0;
  }
  
  .featured-book__container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .featured-book__book-title {
    font-size: 2rem;
  }
  
  .featured-book__description {
    font-size: 1rem;
  }

  .featured-book__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-book__button {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
  }

  .about-book {
    padding: 4rem 0;
  }

  .about-book__header {
    margin-bottom: 3rem;
  }

  .about-book__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-book__subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .about-book__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-book__sidebar {
    position: relative;
    top: 0;
  }

  .about-book__main {
    padding: 2rem;
  }

  .about-book__text {
    font-size: 1rem;
  }

  .about-book__intro {
    font-size: 1.1rem;
  }

  .about-book__highlight {
    padding: 1.5rem;
    font-size: 1.05rem;
  }

  .book-info-card {
    padding: 2rem;
  }

  .about-author {
    padding: 4rem 0;
  }

  .about-author__title {
    font-size: 2rem;
  }

  .author-highlights {
    padding: 4rem 0;
  }

  .author-highlights .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .highlight-card {
    padding: 2rem;
  }

  .highlight-title {
    font-size: 1.3rem;
  }

  .reviews {
    padding: 4rem 0;
  }

  .reviews__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .excerpt {
    padding: 4rem 0;
  }

  .excerpt__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .connect {
    padding: 4rem 0;
  }

  .connect__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .connect__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .excerpt__quote {
    padding: 2.5rem 1.5rem;
  }

  .excerpt__quote-mark {
    font-size: 4rem;
    top: 0.5rem;
    left: 1rem;
  }

  .excerpt__text {
    font-size: 1.1rem;
    padding-left: 2rem;
  }

  .excerpt__actions {
    flex-direction: column;
  }

  .excerpt__button {
    width: 100%;
    text-align: center;
  }

  .press {
    padding: 4rem 0;
  }

  .press__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .gallery {
    padding: 4rem 0;
  }

  .gallery__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

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

  .get-copy {
    padding: 4rem 0;
  }

  .get-copy__title {
    font-size: 2rem;
  }

  .get-copy__text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .get-copy__formats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .format-card {
    padding: 2rem 1.5rem;
  }
  
  .format-card__price {
    font-size: 2rem;
  }
  
  .format-card__button {
    width: 100%;
    justify-content: center;
  }

  .format-card {
    padding: 2rem 1.5rem;
  }

  .format-card__price {
    font-size: 1.75rem;
  }

  .format-card__button {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .decoration-line {
    width: 40px;
  }

  .cta {
    padding: 4rem 0;
  }

  .cta__title {
    font-size: 2rem;
  }

  .cta__book-formats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .book-format-card {
    padding: 1.5rem;
  }

  .book-format__logo {
    width: 100px;
    max-height: 40px;
  }

  .book-format__name {
    font-size: 1.1rem;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__button {
    width: 100%;
  }

  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }


  .contact__container {
    flex-direction: column;
    padding-top: 4rem;
    gap: 3rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .contact__contacts,
  .contact__info {
    width: 100%;
  }
  
  .connect-contact__item {
    padding: 1rem;
  }
  
  .contact__links {
    justify-content: center;
  }


  .actions-header__button {
    padding: 0.75rem;
  }

  .main__container {
    padding-top: 8rem;
  }
  
  @media (max-width: 480px) {
    .main__container {
      padding-top: 6rem;
    }
  }

  .main__container_pages {
    padding-top: 100px;
    padding-bottom: 1.5rem;
  }

  .title-line-1,
  .title-line-2 {
    font-size: 2.5rem;
  }

  .contact-title-1,
  .contact-title-2 {
    font-size: 2.5rem;
  }

  .about-title-1,
  .about-title-2 {
    font-size: 2.5rem;
  }

  .main__subtitle {
    font-size: 0.9rem;
  }

  .main__title {
    font-size: 3rem;
  }

  .main__title_blog {
    font-size: 3rem;
  }

  .main__title_family {
    font-size: 3rem;
  }

  .title-line-1,
  .title-line-2 {
    font-size: 2.5rem;
  }

  .contact-title-1,
  .contact-title-2 {
    font-size: 2.5rem;
  }

  .about-title-1,
  .about-title-2 {
    font-size: 2.5rem;
  }

  .main__subtitle {
    font-size: 0.9rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  .Book-page__item {
    margin-bottom: 3rem;
    padding: 3rem 2rem;
  }

  .Book-page__title {
    font-size: 2rem;
  }

  .Book-page__column {
    flex-direction: column;
    gap: 2rem;
  }

  .Book-page__img {
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .Book-page__book-cover {
    max-width: 100%;
    width: 100%;
  }
  
  .Book-page__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .Book-page__themes,
  .Book-page__testimonials {
    margin: 4rem 0;
    padding: 3rem 0;
  }

  .Book-page__section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .Book-page__section-title::after {
    width: 80px;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .Book-page__themes,
  .Book-page__testimonials {
    margin: 3rem 0;
    padding: 2rem 0;
  }

  .Book-page__section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .Book-page__section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .blog-page {
    padding: 4rem 0;
  }

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

  .blog-post__image {
    min-height: 200px;
  }

  .family-page {
    padding: 4rem 0;
  }

  .family-page__gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .family-image {
    aspect-ratio: 4/3;
  }

  .life-journey {
    padding: 4rem 0;
  }

  .life-journey__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .life-journey__timeline {
    padding-left: 2rem;
  }

  .timeline__marker {
    left: -1.75rem;
    width: 14px;
    height: 14px;
  }

  .timeline__item {
    padding-left: 1.5rem;
  }

  .timeline__title {
    font-size: 1.3rem;
  }

  .achievements {
    padding: 4rem 0;
  }

  .achievements__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .achievements__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievement-card__number {
    font-size: 3rem;
  }

  .achievement-card__title {
    font-size: 1.1rem;
  }

  .personal-life {
    padding: 4rem 0;
  }

  .personal-life__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .personal-life__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .writing-journey {
    padding: 4rem 0;
  }

  .writing-journey__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .writing-journey__text {
    font-size: 1rem;
  }

  .author-details__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__container {
    flex-direction: column;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact__contacts,
  .contact__info {
    padding: 2rem 1.5rem;
  }

  .contact__title {
    font-size: 2rem;
  }

  .connect-contact__item {
    padding: 1.25rem;
  }

  .contact__submit {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 61.936rem) {

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

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

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

  .resources__container {
    grid-template-columns: 1fr;
  }
  
  .hero__name {
    font-size: 2rem;
  }
  
  .featured-book__book-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .header__logo {
    font-size: 1.5rem !important;
    max-width: 200px;
  }
  
  .get-copy__title {
    font-size: 1.75rem;
  }
  
  .about-book__title {
    font-size: 1.75rem;
  }
  
  .format-card__name {
    font-size: 1.3rem;
  }
  
  .format-card__price {
    font-size: 1.75rem;
  }
}

/* Extra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero__name {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero__bio {
    font-size: 0.95rem;
  }
  
  .hero__badge {
    width: 90px;
    height: 90px;
  }
  
  .badge__icon {
    font-size: 1.3rem;
  }
  
  .badge__text {
    font-size: 0.6rem;
  }
  
  .featured-book__book-title {
    font-size: 1.5rem;
  }
  
  .featured-book__description {
    font-size: 0.95rem;
  }
  
  .title {
    font-size: 1.75rem;
  }
  
  .about-book__title,
  .get-copy__title,
  .cta__title {
    font-size: 1.5rem;
  }
  
  .title-line-1,
  .title-line-2,
  .contact-title-1,
  .contact-title-2,
  .about-title-1,
  .about-title-2 {
    font-size: 2rem;
  }
  
  .main__title_blog,
  .main__title_family {
    font-size: 2.5rem;
  }
  
  .format-card {
    padding: 1.5rem 1rem;
  }
  
  .format-card__name {
    font-size: 1.2rem;
  }
  
  .format-card__price {
    font-size: 1.5rem;
  }
  
  .format-card__button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .about-book__main,
  .book-info-card {
    padding: 1.5rem;
  }
  
  .excerpt__quote {
    padding: 2rem 1.5rem;
  }
  
  .excerpt__quote-mark {
    font-size: 4rem;
    top: 0.5rem;
    left: 1rem;
  }
  
  .excerpt__text {
    font-size: 1.05rem;
    padding-left: 1.5rem;
  }
  
  .Book-page__title {
    font-size: 1.75rem;
  }
  
  .Book-page__text {
    font-size: 1rem;
  }
  
  .Book-page__item {
    padding: 2rem 1.5rem;
  }
  
  .family-page__gallery {
    gap: 0.75rem;
  }
  
  .contact__contacts,
  .contact__info {
    padding: 1.5rem 1rem;
  }
  
  .connect-contact__item {
    padding: 0.875rem;
  }
  
  .connect-contact__icon {
    width: 45px;
    height: 45px;
  }
  
  .connect-contact__label {
    font-size: 1rem;
  }
  
  .contact__input,
  .contact__textarea {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .contact__submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .blog-post__content {
    padding: 2rem 1.5rem;
  }
  
  .blog-post__title {
    font-size: 1.75rem;
  }
  
  .blog-post__excerpt {
    font-size: 1rem;
  }
  
  .highlights-grid {
    gap: 1.5rem;
  }
  
  .highlight-card {
    padding: 2rem 1.5rem;
  }
  
  .highlight-title {
    font-size: 1.3rem;
  }
  
  .highlight-icon {
    font-size: 2.5rem;
  }
  
  .achievement-card {
    padding: 2rem 1.5rem;
  }
  
  .achievement-card__number {
    font-size: 3rem;
  }
  
  .achievement-card__title {
    font-size: 1.1rem;
  }
  
  .personal-life__card {
    padding: 2rem 1.5rem;
  }
  
  .personal-life__card-title {
    font-size: 1.3rem;
  }
  
  .author-highlight-photo {
    max-width: 100%;
  }
  
  .menu__link {
    font-size: 1.25rem;
  }
  
  .main__container_pages {
    padding-top: 90px;
    padding-bottom: 1rem;
  }
  
  .header__logo {
    font-size: 1.5rem !important;
    max-width: 200px;
  }
  
  .icon-menu {
    width: 32px;
    height: 32px;
  }
  
  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    width: 22px;
  }
  
  iframe {
    height: 250px;
  }
}

/* Prevent horizontal scroll on all devices */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

/* Ensure containers don't overflow */
[class*="__container"],
[class*="container"] {
  width: 100%;
  overflow-x: hidden;
}

/* Ensure touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
  .button,
  .menu__link,
  .contact__link,
  .format-card__button,
  .blog-post__link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-menu {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Blog Post Single Page Responsive */
@media (max-width: 992px) {
  .blog-post-content__container {
    grid-template-columns: 1fr;
  }
  
  .blog-post-content__sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-post-header {
    padding: 6rem 1.5rem 3rem;
  }
  
  .blog-post-header__title {
    font-size: 2rem;
  }
  
  .blog-post-image__container {
    margin: -2rem auto 0;
  }
  
  .blog-post-content {
    padding: 4rem 1.5rem;
  }
  
  .blog-post-content__article {
    font-size: 1.05rem;
  }
  
  .blog-post-content__cta {
    padding: 2rem;
  }
  
  .blog-post-content__cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .blog-post-header__title {
    font-size: 1.6rem;
  }
  
  .blog-post-share__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .blog-post-share__button {
    width: 100%;
    justify-content: center;
  }
}