:root {
  --primary-dark: #1a1a1a;
  --primary-charcoal: #2d2d2d;
  --accent-rust: #d4622f;
  --accent-gold: #c9a661;
  --accent-sage: #7a9a7e;
  --background-cream: #f7f4ef;
  --background-white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --border-subtle: #e0ddd7;
  --shadow-soft: rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Libre Baskerville', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-rust);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Navigation */
.main-nav {
  background: var(--background-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-soft);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-rust);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: var(--background-white);
    width: 100%;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-soft);
  }
  
  .nav-menu.active {
    left: 0;
  }
}

/* Hero Section */
.hero-editorial {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-cream) 0%, #e8e3d9 100%);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0.4;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-rust), transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-sage), transparent);
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-gold), transparent);
  top: 60%;
  left: 70%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  max-width: 900px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-description {
  max-width: 700px;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent-rust);
  color: var(--background-white);
  box-shadow: 0 4px 15px rgba(212, 98, 47, 0.3);
}

.btn-primary:hover {
  background: #b85428;
  color: var(--background-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 98, 47, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--background-white);
  transform: translateY(-2px);
}

/* Section Styling */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-alt {
  background: var(--background-white);
}

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

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

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Timeline Section */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  animation: slideIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  animation-delay: 0.4s;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: var(--background-white);
  border-left: 4px solid var(--accent-rust);
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: var(--accent-rust);
  border: 4px solid var(--background-cream);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
}

/* Knowledge Compounds Section */
.compound-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.compound-block {
  padding: 2.5rem;
  background: var(--background-white);
  border-top: 4px solid var(--accent-rust);
  text-align: center;
  transition: all 0.3s ease;
}

.compound-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.compound-icon {
  font-size: 3rem;
  color: var(--accent-rust);
  margin-bottom: 1.5rem;
}

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

/* Quote Carousel */
.quote-carousel {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--primary-dark);
  color: var(--background-white);
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  min-height: 150px;
}

.quote-author {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* Reading Paths */
.paths-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.path-card {
  padding: 3rem;
  background: var(--background-white);
  border-top: 6px solid var(--accent-rust);
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.path-card:nth-child(2) {
  border-top-color: var(--accent-sage);
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.path-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.path-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.path-steps {
  list-style: none;
  margin: 2rem 0;
}

.path-steps li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.path-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-rust);
  font-weight: bold;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.comparison-column {
  padding: 3rem;
  border-radius: 0;
}

.comparison-column:first-child {
  background: var(--primary-dark);
  color: var(--background-white);
}

.comparison-column:last-child {
  background: var(--background-white);
  border: 2px solid var(--primary-dark);
}

.comparison-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-rust);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-column:last-child .comparison-list li {
  border-bottom-color: var(--border-subtle);
}

.comparison-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-rust);
  font-weight: bold;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Books */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.book-card {
  display: flex;
  gap: 2rem;
  background: var(--background-white);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 6px solid var(--accent-rust);
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.book-image {
  flex-shrink: 0;
  width: 180px;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.book-info {
  flex-grow: 1;
}

.book-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.book-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.book-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.book-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-rust);
  margin-bottom: 1.5rem;
}

/* Featured Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.article-card {
  background: var(--background-white);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.article-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.article-content {
  padding: 2.5rem;
}

.article-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.article-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.article-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Service Section */
.service-showcase {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-charcoal) 100%);
  color: var(--background-white);
  text-align: center;
}

.service-title {
  color: var(--background-white);
  margin-bottom: 1.5rem;
}

.service-description {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.service-feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.service-feature h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 2rem 0;
}

.service-price-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

/* Trust Section */
.trust-section {
  background: var(--background-white);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-icon {
  font-size: 4rem;
  color: var(--accent-sage);
  margin-bottom: 2rem;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-principle {
  padding: 1.5rem;
}

.trust-principle-icon {
  font-size: 2rem;
  color: var(--accent-rust);
  margin-bottom: 1rem;
}

/* Footer */
.main-footer {
  background: var(--primary-dark);
  color: var(--background-white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-hero {
  padding: 6rem 2rem 3rem;
  background: var(--background-white);
  text-align: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-form-section,
.contact-info-section {
  padding: 3rem;
  background: var(--background-white);
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border: 2px solid var(--border-subtle);
  background: var(--background-cream);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-rust);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.contact-info-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--accent-rust);
  margin-bottom: 0.5rem;
}

.map-container {
  margin-top: 3rem;
  height: 400px;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Book Detail Page */
.book-detail-hero {
  padding: 4rem 2rem;
  background: var(--background-white);
}

.book-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
}

.book-detail-image {
  width: 100%;
  box-shadow: 0 8px 40px var(--shadow-soft);
}

.book-detail-content {
  padding-top: 2rem;
}

.book-detail-category {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 1rem;
  font-weight: 600;
}

.book-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-rust);
  margin: 2rem 0;
}

.book-detail-section {
  padding: 4rem 2rem;
}

.book-detail-section:nth-child(even) {
  background: var(--background-white);
}

.toc-list {
  list-style: none;
  max-width: 800px;
  margin: 2rem auto;
}

.toc-list li {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--background-white);
  border-left: 4px solid var(--accent-rust);
  box-shadow: 0 2px 10px var(--shadow-soft);
}

.disclaimer-box {
  max-width: 900px;
  margin: 2rem auto;
  padding: 3rem;
  background: #fff9e6;
  border: 2px solid var(--accent-gold);
  border-left: 6px solid var(--accent-gold);
}

.disclaimer-box h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

@media (max-width: 968px) {
  .book-detail-container {
    grid-template-columns: 1fr;
  }
}

/* Article Page */
.article-hero {
  padding: 4rem 2rem;
  background: var(--background-white);
  text-align: center;
}

.article-hero-image {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  object-fit: cover;
  margin: 3rem auto;
  box-shadow: 0 8px 40px var(--shadow-soft);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body img {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.article-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-date {
  font-family: 'Lato', sans-serif;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.legal-page h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.legal-page h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-page ul,
.legal-page ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
  padding: 6rem 2rem 3rem;
  background: var(--background-white);
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-section {
  margin-bottom: 5rem;
}

.about-section h2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-rust);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  padding: 2.5rem;
  background: var(--background-white);
  border-top: 4px solid var(--accent-rust);
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--accent-rust);
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--background-white);
  padding: 2rem;
  box-shadow: 0 -4px 20px var(--shadow-soft);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex-grow: 1;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive */
@media (max-width: 968px) {
  .books-grid,
  .articles-grid,
  .paths-container {
    grid-template-columns: 1fr;
  }
  
  .book-card {
    flex-direction: column;
  }
  
  .book-image {
    width: 100%;
    height: auto;
  }
}



.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}