/* ========== GLOBAL STYLES ========== */
body {
  font-family: 'Lato', sans-serif;
  /* Softened gradient for better text contrast */
  background: linear-gradient(to left, 
    rgba(255, 174, 66, 0.06) 0%,
    rgba(243, 222, 218, 0.06) 34%, 
    rgba(241, 228, 236, 0.06) 67%, 
    rgba(240, 234, 255, 0.06) 100%
  );
  color: #3A3432;
  line-height: 1.8; /* Increased from 1.6 */
  margin: 0;
  padding: 50px;
  letter-spacing: 0.03em;
  padding-bottom: 80px;
}

/* ========== HEADER ========== */
.site-header {
  width: 100%;
  padding: 2rem 0 1rem 0;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  box-sizing: border-box;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 2em;
  position: relative;
}

/* ========== DROPDOWN MENU ========== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 1.1rem;
  padding: 0.5rem 1rem; /* Increased padding */
  text-decoration: none;
  color: #230A5C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 14px;
  transition: all 0.3s ease; /* Smoother transition */
  cursor: pointer;
  background: none;
  border: 2px solid transparent; /* Add border for better touch target */
  gap: 0.5rem;
}

.dropdown-toggle:hover {
  background-color: #FFAE42; /* Changed to Saffron for distinction */
  color: #230A5C;
  transform: translateY(-2px); /* More pronounced lift */
  box-shadow: 0 4px 12px rgba(255, 174, 66, 0.4); /* Stronger shadow */
  border-color: rgba(255, 174, 66, 0.3);
}

.dropdown.active .dropdown-toggle {
  background-color: #230A5C;
  color: #FFAE42;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(35, 10, 92, 0.3);
  border-color: #230A5C;
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background-color: #FFFCF8;
  border: 2px solid rgba(35, 10, 92, 0.2); /* Stronger border */
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow */
  min-width: 200px; /* Slightly wider */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 1rem 1.25rem; /* More padding */
  color: #230A5C;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border-radius: 10px;
  margin: 0.25rem;
}

.dropdown-menu a:hover {
  background-color: #FFAE42; /* Saffron for consistency */
  color: #230A5C;
  transform: translateX(4px); /* More pronounced shift */
}

.dropdown-menu a[href*="janna.page/meet"]:hover {
  background-color: #FF8C42;  /* Pumpkin for CTA emphasis */
  color: #230A5C;
}

/* ========== TYPOGRAPHY ========== */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #230A5C;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  font-size: 2.25rem; /* Slightly larger */
  line-height: 1.3; /* Better heading spacing */
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #230A5C;
  letter-spacing: 0.05em;
  margin: 2rem 0 1rem 0; /* More top spacing */
  font-size: 1.65rem; /* Larger for better hierarchy */
  line-height: 1.4;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.2rem; /* Slightly larger */
  line-height: 1.5;
}

h4 {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-weight: 500;
  font-size: 1.25rem; /* Slightly larger */
  font-style: italic;
  margin: 0.5rem 0 1rem 0; /* Better spacing */
  padding: 0;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

strong, b {
  font-weight: 600; /* Slightly less heavy */
  text-decoration: underline;
  text-decoration-color: rgba(255, 174, 66, 0.3); 
    text-underline-offset: 5px;
    text-decoration-thickness: 0.75px;
  padding: 0 0.1em;
}

/* ========== MAIN CONTAINER ========== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

main > h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem; /* More breathing room */
}

main > p {
  margin-bottom: 1.5rem; /* Increased from 1rem */
  font-size: 1.05rem; /* Slightly larger body text */
}

hr {
  border: none; 
  height: 3px;
  background-color: #FFAE42; /* Saffron for consistency */
  margin: 1rem 0;
}

/* ========== HERO SECTION ========== */

.hero-section {
  max-width: 1200px;
  margin: 2rem auto 1rem;
  padding: 0;
  box-sizing: border-box;
}

.hero-section h1 {
  margin-bottom: 1rem;
}

.hero-section hr {
  margin: 1rem 0 1.5rem 0;
}

.hero-intro {
  display: flex;
  margin: 1.5rem 0 3rem 0; /* More bottom spacing */
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.hero-intro h4 {
  flex: 1;
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-weight: 400; /* Changed from 500 to lighter */
  font-size: 1.1rem; /* Changed from 1.25rem - much smaller */
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.hero-intro .btn {
  flex-shrink: 0;
  width: auto;
  white-space: nowrap; /* Prevent button text wrapping */
}

/* ========== LEGAL PAGES ========== */
.legal-content p {
  margin: 0 0 1rem 0; /* Increased spacing */
  line-height: 1.9;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.9;
}

.legal-content li {
  margin-bottom: 0.75rem; /* More spacing between items */
}

.legal-content hr {
  border: none;
  height: 1px;
  background-color: rgba(35, 10, 92, 0.15); /* Slightly more visible */
  margin: 2rem 0;
}

/* ========== CONSULTING PAGES ========== */
.consulting-content p {
  margin: 0.75rem 0;
  line-height: 1.9;
}

.consulting-content h1 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.consulting-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.consulting-content h4 {
  margin-top: 0.5rem;
}

.consulting-content ul {
  margin: 1.5rem 0 1rem 0;
  list-style-type: none;
  padding-left: 0;
}

.consulting-content li {
  margin-bottom: 1.5rem; /* More spacing */
  line-height: 1.9;
}

.btn-consulting-content {
  margin: 1.5rem 0;
}

.consulting-content-link {
  display: inline-block;
  color: #230A5C;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1rem;
  margin: 0;
  transition: all 0.2s ease;
  padding: 0.25rem 0;
}

.consulting-content-link:hover {
  color: #FF8C42;
  transform: translateX(-2px);
}

/* ========== LEARN MORE LINK (secondary CTA) ========== */
.learn-more-link {
  display: inline-block;
  color: #230A5C;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Bolder */
  font-style: normal; /* Remove italic */
  font-size: 1rem;
  margin: 0.75rem 0 1.25rem 0;
  transition: all 0.2s ease;
}

.learn-more-link:hover {
  color: #FF8C42;
  transform: translateX(2px);
}

.learn-more-no-button {
  display: inline-block;
  color: #230A5C;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Bolder */
  font-style: normal; /* Remove italic */
  font-size: 1rem;
  margin-top: auto;
  transition: all 0.2s ease;
}

.learn-more-no-button:hover {
  color: #FF8C42;
  transform: translateX(2px);
}

/* ========== CARD SYSTEM (text-only) ========== */
.cards-container {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.card {
  background: #FFF7EE; /* Parchment - warmer, more inviting */
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(255, 140, 66, 0.12),
    0 0 0 1px rgba(35, 10, 92, 0.08);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-6px); /* More lift */
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(255, 140, 66, 0.2),
    0 0 0 1px rgba(35, 10, 92, 0.12);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.card-content h2.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 1rem 0; /* More spacing */
  font-size: 1.65rem; /* Larger */
  line-height: 1.3;
}

.card-content h2.card-title:first-of-type {
  margin-top: 0;
}

.card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
}

.card-content p {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.card-content p.card-meta {
  font-size: 0.95rem;
  font-style: italic;
  color: #6B6260;
}

.card-content ul {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 1.25rem;
  list-style-type: disc;
}

.card-content li {
  margin: 0 0 0.75rem 0; /* More spacing */
}

.card-content p + ul {
  margin-top: 0.5rem;
}

.card-content p:last-child,
.card-content ul:last-child, 
.card.content li:last-child {
  margin-bottom: 0;
}

.card-content .btn {
  width: auto;
  max-width: 100%;
  margin: 1rem 0 0 0; /* Top margin only */
  display: inline-block;
  box-sizing: border-box;
}

/* ========== PRODUCT CARD SYSTEM (for digital downloads) ========== */
.product-card {
  background: #FFF7EE; /* Parchment */
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(255, 140, 66, 0.12),
    0 0 0 1px rgba(35, 10, 92, 0.08);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(255, 140, 66, 0.2),
    0 0 0 1px rgba(35, 10, 92, 0.12);
}

.product-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.product-card-content h2.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 1rem 0;
  font-size: 1.65rem;
  line-height: 1.3;
}

.product-card-content h2.card-title:first-of-type {
  margin-top: 0;
}

.product-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
}

.product-card-content p {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.product-card-content p.card-meta {
  font-size: 0.95rem;
  font-style: italic;
  color: #6B6260;
  margin-bottom: 1.5rem;
}

.product-card-content ul {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 1.25rem;
  list-style-type: disc;
}

.product-card-content li {
  margin: 0 0 0.75rem 0;
}

.product-card-content p + ul {
  margin-top: 0.5rem;
}

.product-card-content p:last-child,
.product-card-content ul:last-child, 
.product-card-content li:last-child {
  margin-bottom: 0;
}

/* ========== IMAGE CARD SYSTEM (text + image) ========== */
.image-card {
  background: #FFF7EE; /* Parchment */
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(255, 140, 66, 0.12),
    0 0 0 1px rgba(35, 10, 92, 0.08);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(255, 140, 66, 0.2),
    0 0 0 1px rgba(35, 10, 92, 0.12);
}

.image-card-content {
  display: block;
}

.image-card-info {
  display: block;
}

.image-card-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 1rem 0;
  font-size: 1.65rem;
  line-height: 1.3;
}

.image-card-info h2:first-child {
  margin-top: 0;
}

.image-card-info p {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.image-card-info p:last-child {
  margin-bottom: 0;
}

.image-card-info .btn {
  width: auto;
  max-width: 100%;
  margin: 1rem 0 0 0;
  display: inline-block;
  box-sizing: border-box;
}

.image-card-image {
  float: right;
  margin: 0 0 1.5rem 2.5rem; /* More spacing */
}

.image-card-image img {
  max-width: 220px; /* Slightly larger */
  height: auto;
  border-radius: 50%; /* Circular for profile photos */
  display: block;
  border: 3px solid rgba(255, 174, 66, 0.2); /* Subtle border */
}

/* ========== NEWSLETTER CARD SYSTEM ========== */
.newsletter-card {
  background: #FFF7EE; /* Parchment */
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(255, 140, 66, 0.12),
    0 0 0 1px rgba(35, 10, 92, 0.08);
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2.5rem 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(255, 140, 66, 0.2),
    0 0 0 1px rgba(35, 10, 92, 0.12);
}

.newsletter-card-content {
  display: grid;
  grid-template-columns: 1fr 240px; /* Slightly larger image area */
  gap: 2.5rem; /* More gap */
  align-items: center;
}

.newsletter-card-info {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  align-items: flex-start;
}

.newsletter-card-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #230A5C;
  margin: 0 0 1rem 0;
  font-size: 1.65rem;
  line-height: 1.3;
}

.newsletter-card-info h2:first-child {
  margin-top: 0;
}

.newsletter-card-info p {
  font-family: 'Lato', sans-serif;
  color: #3A3432;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.newsletter-card-info p.card-meta {
  font-size: 0.95rem;
  font-style: italic;
  color: #6B6260;
  margin-bottom: 1.5rem;
}

.newsletter-card-info p:last-child {
  margin-bottom: 0;
}

.newsletter-card-image {
  display: flex;
  align-items: start;
  justify-content: center;
}

.newsletter-card-image img {
  max-width: 220px; /* Slightly larger */
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add depth */
}

/* ========== BUTTONS & LINKS ========== */
.btn {
  display: inline-block;
  padding: 1rem 2rem; /* Larger buttons */
  background-color: #FF8C42;
  color: #FFFCF8; /* Changed to off-white for better contrast */
  font-family: 'Montserrat', sans-serif; /* Changed to Montserrat for more impact */
  font-weight: 700; /* Bolder */
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
  border: 2px solid transparent;
}

.btn:hover {
  background-color: #230A5C;
  color: #FFAE42;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(35, 10, 92, 0.4);
  border-color: #230A5C;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(35, 10, 92, 0.3);
}

a {
  color: #230A5C; /* Changed from gray to Deep Indigo */
  text-decoration: underline;
  text-decoration-color: rgba(35, 10, 92, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

a:hover {
  color: #FF8C42;
  text-decoration-color: rgba(255, 140, 66, 0.6);
}

.btn-substack {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #FF8C42;
  color: #FFFCF8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
  border: 2px solid transparent;
}

.btn-substack:hover {
  background-color: #230A5C;
  color: #FFAE42;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(35, 10, 92, 0.4);
  border-color: #230A5C;
}

.product-card-content .btn {
  width: auto;
  max-width: 100%;
  margin: 1rem 0 0 0;
  display: inline-block;
  box-sizing: border-box;
}

.product-card-content .btn:hover {
  background-color: #230A5C;
  color: #FFAE42;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(35, 10, 92, 0.4);
}

/* ========== THREE-COLUMN GRID (for service boxes) ========== */
.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 2.5rem 0;
  padding: 0;
  box-sizing: border-box;
  align-items: stretch;
}

.three-column-grid .card {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem; /* Less padding for tighter cards */
}

.three-column-grid .card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Consistent spacing between elements */
}

.three-column-grid .card-content h3 {
  margin: 0; /* Remove margins, use gap instead */
}

.three-column-grid .card-content p {
  margin: 0; /* Remove margins, use gap instead */
  flex-grow: 0; /* Don't let description expand */
}

.three-column-grid .learn-more-no-button {
  margin-top: 0.5rem; /* Small gap above link */
  padding-top: 0;
}

/* ========== FOOTER ========== */
footer {
  background-color: inherit;
  padding: 0;
  margin-top: 4rem; /* More spacing */
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #3A3432;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

footer hr {
  max-width: 1200px;
  margin: 2rem auto 1.5rem auto;
  border: none;
  height: 1px;
  background-color: rgba(35, 10, 92, 0.15);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left, .footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* Tighter spacing */
  align-self: flex-start;
}

.footer-right {
  text-align: right;
}

.footer-left p, .footer-right p {
  margin: 0;
  line-height: 1.4; /* Tighter line height */
}

footer a {
  color: #6B6260; /* Graphite for footer links */
  font-weight: 500;
}

footer a:hover {
  color: #FF8C42;
}

/* ========== COOKIE BANNER ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #F0EAFF;
  color: #3A3432;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 1.25em; /* More padding */
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15); /* Stronger shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  border-top: 2px solid rgba(35, 10, 92, 0.1);
}

#cookie-banner a {
  color: #230A5C;
  font-weight: 600;
}

#cookie-banner a:hover {
  color: #FF8C42;
}

#cookie-banner span {
  white-space: nowrap;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
  justify-content: center;
}

#cookie-banner button {
  padding: 0.75em 1.5em; /* Larger touch target */
  background-color: #230A5C;
  color: #F0EAFF;
  border: 2px solid #230A5C;
  border-radius: 10px;
  font-weight: 700; /* Bolder */
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}

#cookie-banner button:hover {
  background-color: #FFAE42;
  color: #230A5C;
  border-color: #FFAE42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 174, 66, 0.3);
}

/* ========== TABLET ADJUSTMENTS ========== */
@media (max-width: 1024px) {
  body {
    padding: 40px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .three-column-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-card-content {
    grid-template-columns: 1fr 180px;
    gap: 2rem;
  }
  
  .newsletter-card-image img,
  .image-card-image img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 30px;
  }
  
  .card,
  .product-card,
  .newsletter-card,
  .image-card {
    padding: 2rem;
  }
  
  .three-column-grid {
    gap: 1.5rem;
  }
}

/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 600px) {
  body {
    padding: 20px;
    line-height: 1.9; /* Even more line height on mobile */
  }
  
  .site-header {
    padding: 1.5rem 0 1rem 0;
    margin-bottom: 1rem;
  }
  
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .logo-link {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  
  .logo {
    height: 32px;
  }
  
  .site-nav {
    width: 100%;
    margin-left: 0;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .dropdown {
    width: auto;
  }
  
  .dropdown-toggle {
    min-height: 48px; /* Minimum touch target */
    font-size: 1rem;
    padding: 0.75rem 1rem; /* Larger touch target */
    border-radius: 12px;
  }

  .dropdown-menu {
    right: auto;
    left: 0;
    min-width: 200px;
  }

  .dropdown-menu a {
    font-size: 1rem;
    padding: 1rem 1.25rem; /* Larger touch targets */
  }

  main > h1 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    line-height: 1.3;
  }

  main > p {
    margin: 0 0 1.25rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
  }

  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }

  .hero-section {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-cta {
    margin-top: 1.5rem;
  }

  .hero-intro {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-intro .btn {
    margin-top: 1rem;
    width: auto; /* Changed from 100% */
    text-align: center;
  }

  .card,
  .product-card,
  .image-card {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem;
    margin: 1.75rem 0;
  }

  .cards-container .card:first-child,
  .cards-container .product-card:first-child,
  .cards-container .image-card:first-child {
    margin-top: 1.75rem;
  }

  .card-content h2.card-title,
  .product-card-content h2.card-title,
  .image-card-info h2 {
    font-size: 1.35rem;
    margin: 0 0 1rem 0;
  }

  .card-content h2.card-title:first-child,
  .product-card-content h2.card-title:first-child,
  .image-card-info h2:first-child {
    margin-top: 0;
  }

  .card-content p,
  .product-card-content p,
  .image-card-info p {
    font-size: 1.05rem;
    margin: 0 0 1rem 0;
    line-height: 1.9;
  }

  .card-content ul,
  .product-card-content ul {
    margin: 1rem 0 1.25rem 0;
  }

  .card-content li,
  .product-card-content li {
    margin: 0 0 0.75rem 0;
  }

  .image-card-content {
    display: flex;
    flex-direction: column;
  }

  .image-card-image {
    float: none; /* Remove float on mobile */
    margin: 0 0 1.5rem 0; /* Center with bottom margin */
    display: flex;
    justify-content: center;
  }
  
  .image-card-image img {
    max-width: 120px; /* Smaller circular avatar on mobile */
    border-width: 2px;
  }

  .image-card-info {
    width: 100%;
  }

  .image-card-info .btn,
  .card-content .btn,
  .product-card-content .btn {
    width: auto; /* Changed from 100% */
    text-align: center;
    margin: 1rem 0;
  }

  .consulting-content .btn {
    width: auto; /* Changed from 100% */
    max-width: 100%;
    text-align: center;
    margin: 1rem 0;
  }

  .newsletter-card {
    width: 100%;
    max-width: 100%;
    padding: 1.75rem;
    margin: 1.75rem 0;
  }

  .cards-container .newsletter-card:first-child {
    margin-top: 1.75rem;
  }

  .newsletter-card-content {
    display: flex;
    flex-direction: column;
  }

  .newsletter-card-image {
    display: none; /* Hide images on mobile for newsletter cards */
  }

  .newsletter-card-info {
    width: 100%;
  }

  .newsletter-card-info h2 {
    font-size: 1.35rem;
    margin: 0 0 1rem 0;
  }

  .newsletter-card-info h2:first-child {
    margin-top: 0;
  }

  .newsletter-card-info p {
    font-size: 1.05rem;
    margin: 0 0 1rem 0;
    line-height: 1.9;
  }

  .newsletter-card-info .btn-substack {
    width: auto; /* Changed from 100% */
    text-align: center;
    box-sizing: border-box;
    margin: 1rem 0;
  }

  .btn {
    width: auto; /* Don't force full width on mobile */
    max-width: 100%; /* But allow it if needed */
    text-align: center;
    box-sizing: border-box;
    padding: 1rem 1.5rem;
  }

  .mobile-break {
    display: block;
  }
  
  footer {
    margin-top: 3rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 0.25rem; /* Same tight spacing as desktop */
    padding: 0 0.5rem;
  }
  
  .footer-right {
    text-align: left;
  }

  .desktop-divider {
    display: none;
  }

  #cookie-banner {
    flex-direction: column;
    font-size: 0.95rem;
    padding: 1em 0.75em;
    gap: 0.75em;
  }

  #cookie-banner span {
    margin: 0;
    display: block;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
  }

  #cookie-banner button {
    width: 100%;
    padding: 0.75em 1em;
    font-size: 1rem;
    margin: 0;
  }
}