/* Custom Properties (Variables) for easy color management */
:root {
    --primary-blue: #357ca5; /* New Primary Blue */
    --primary-blue-dark: #2a6a90; /* Darker New Primary Blue for hover/active states */
    --accent-green: #5C8D55; /* Accent Green for No Onion, No Garlic */
    --accent-green-dark: #4a7546; /* Darker Accent Green */
    --light-grey-bg: #f2f5f9; /* Subtle warmth added */
    --lighter-grey-bg: #f5f8fc; /* Enhanced warmth */
    --dark-text: #1a2a3a; /* Richer navy for better prominence */
    --medium-text: #2c3e50; /* Enhanced contrast */
    --light-text: #ecf0f1; /* Light text for dark backgrounds */
    --border-light: #e0e6ed; /* Light border color */
    --shadow-light: rgba(0, 0, 0, 0.05); /* Subtle shadow */
    --shadow-medium: rgba(0, 0, 0, 0.1); /* Medium shadow */
    --shadow-strong: rgba(0, 0, 0, 0.2); /* Stronger shadow */
    --shadow-prominent: rgba(0,0,0,0.3); /* Prominent shadow for icons */
    --button-secondary: #FF6C37; /* Unified vibrant orange for Subscribe buttons */
    --button-secondary-hover: #E55A2B; /* Darker orange for hover (accessible contrast) */
    --support-red: #D9534F; /* Red for support card */
    --support-red-dark: #C24440; /* Darker red for support card hover */
    --archives-neutral: #a0a8b3; /* Neutral grey for archives card */
    --archives-neutral-light: #f7f8f9; /* Lighter background for archives card */
    --archives-neutral-dark: #818995; /* Darker neutral for archives icon hover */
}

/* General Layout and Container Styles */
*, *::before, *::after {
    box-sizing: border-box; /* Universal box-sizing for consistent layout */
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-grey-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbar due to animations */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* Custom Scrollbar Styling (Webkit only - Chrome, Safari) */
body::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--border-light); /* Color of the track */
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue); /* Primary Blue */
    border-radius: 10px;
    border: 3px solid var(--border-light); /* Padding around the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-blue-dark); /* Darker Primary Blue on hover */
}

.container {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Horizontal padding for smaller screens */
}

section {
    padding: 60px 0; /* Vertical padding only; horizontal padding handled by .container */
    /* text-align is NOT set here, allowing individual elements to control their alignment */
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    text-align: center; /* Default to center for headings, can be overridden */
}

h1 {
    font-size: 3.5em; /* Larger heading for hero */
    font-weight: 700; /* Bold */
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

h3 {
    color: var(--dark-text);
    font-size: 1.5em;
}

/* Adjusted Paragraph Spacing */
p {
    margin-bottom: 1.5em; /* Standard paragraph spacing (one blank line visually) */
}

/* Button Styling */
.button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-medium);
    margin-top: 20px;
    border: 2px solid transparent; /* Added for hover effect transition */
}

.button:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow-strong);
    border-color: var(--primary-blue); /* Match border to text color on hover */
}

.button.hero-cta {
  background-color: #ff7433;
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 1.1rem;
  margin-top: 20px;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 116, 51, 0.4); /* Enhanced shadow for more pop */
  border: 2px solid transparent;
}

.button.hero-cta:hover {
  background-color: #e66028;
  transform: translateY(-2px);
}

/* Secondary Button Style */
.button-secondary {
    background-color: var(--button-secondary);
    border-color: var(--button-secondary);
}

.button-secondary:hover {
    background-color: #ffffff;
    color: var(--button-secondary);
    border-color: var(--button-secondary);
}


/* Hero Section Specific Styles - ADJUSTED FOR VIDEO BACKGROUND */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5vw 14vh 5vw;
  text-align: center;
  background-color: #ffffff;
  overflow: hidden;
  min-height: 100vh; /* <- Add this line */
}

header.hero.homepage-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 10vh 5vw; /* override the bottom-heavy padding */
  display: flex;
  flex-direction: column;
}


.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Force full viewport width */
    height: 100vh; /* Full viewport height */
    object-fit: cover;
    z-index: 0;
    filter: grayscale(20%) brightness(80%);
}


.hero h1 {
  font-family: 'Lora', serif;
  color: var(--dark-text);
  font-size: clamp(2.3rem, 3.5vw + 0.5rem, 3.2rem);
  font-weight: 700;
  margin-bottom: 15px;
  overflow: visible;
  text-overflow: initial;
  max-width: 100%;
  text-align: center;
  letter-spacing: -0.015em;
}

.hero-tagline-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-tagline-final {
  display: inline-flex;
  align-items: baseline;
}

.fixed-name {
  display: inline-block;
  min-width: 150px;
  font-weight: 600;
  white-space: nowrap;
}


/* General fadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 3.2em;
  font-weight: 700;
  text-align: center;
  font-family: 'Lora', serif;
}




/* Allow wrap again on smaller screens */
@media (max-width: 600px) {
  .hero h1:not(.hero-heading) {
    font-size: 2.4em;
    white-space: normal;
    text-overflow: initial;
  }
}

.typed-content {
  display: inline-flex;
  align-items: baseline;
  font-style: italic;
  white-space: nowrap;
  font-weight: 300;
  color: var(--dark-text);
}


#typed-wrapper {
  display: inline-flex;
  align-items: baseline;
}

#typed-text {
  display: inline;
  white-space: pre;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-text);
}

#cursor {
  display: inline-block;
  font-weight: bold;
  color: var(--dark-text);
  margin-left: 1px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}



#typing-container {
  display: inline-flex;
  align-items: baseline;
}

/* Lighten the hero overlay a bit (was 0.7 opacity) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242, 245, 249, 0.6) 0%, rgba(245, 248, 252, 0.7) 100%); /* Subtle warmth with gradient */
  z-index: 1;
}


.hero-content { /* Added wrapper for hero text to ensure it's on top */
    position: relative;
    z-index: 2;
    padding: 20px 20px 120px 20px;
    max-width: 900px; /* Limit content width */
    margin: 0 auto;
    text-align: center;
}

/* Specific styles for newsletter hero section (now also using video) */
.newsletter-hero {
    padding: 80px 0;
    min-height: 400px; /* Adjust min-height for newsletter hero */
    background-color: transparent; /* Fallback if video fails */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.newsletter-hero-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 15px 40px var(--shadow-prominent);
    border: 4px solid var(--primary-blue);
    margin-bottom: 30px;
}

/* Remove shadow effects on mobile for newsletter hero */
@media (max-width: 768px) {
    .newsletter-hero-logo {
        box-shadow: none;
    }
    
    .newsletter-hero h1 {
        text-shadow: none;
    }
}

.newsletter-hero h1 {
    font-size: 4.5em;
    color: var(--dark-text);
    margin-bottom: 20px;
}

/* About Me Section Specific Styles */
.about-me {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* Additional floating elements */
.about-me .floating-element-1 {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.about-me .floating-element-2 {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 8s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced text reveal animations for sections */
.about-me h2,
.about-me p,
.about-me img {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-me h2.reveal,
.about-me p.reveal,
.about-me img.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Add hover effects to paragraphs */
.about-me p:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Add subtle glow to key phrases */
.about-me p strong {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.about-me p strong:hover {
    color: #f97316;
    text-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

.about-me h2 {
    transition-delay: 0.1s;
}

.about-me img {
    transition-delay: 0.2s;
}

.about-me p:nth-child(1) {
    transition-delay: 0.3s;
}

.about-me p:nth-child(2) {
    transition-delay: 0.4s;
}

.about-me p:nth-child(3) {
    transition-delay: 0.5s;
}

/* Layer 1: Orange accent elements */
.about-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Orange accent orbs */
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 55%),
        /* Subtle grain texture */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03' fill='%23f97316'/%3E%3C/svg%3E");
    background-size: 300px 200px, 250px 150px, 200px 120px, 100px 100px;
    background-position: 0 0, 100px 50px, 200px 100px, 0 0;
    opacity: 1;
    z-index: 0;
    animation: orangeAccentDrift 25s ease-in-out infinite;
    filter: blur(1px);
}

/* Layer 2: Sophisticated glow */
.about-me::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Sophisticated ambient light */
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 350px 350px, 250px 250px, 200px 200px;
    background-position: 0 0, 100px 100px, 200px 200px;
    opacity: 1;
    z-index: 0;
    animation: sophisticatedGlow 30s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes orangeAccentDrift {
    0% {
        background-position: 0 0, 100px 50px, 200px 100px, 0 0;
        opacity: 0.8;
    }
    33% {
        background-position: 30px 20px, 130px 70px, 230px 120px, 0 0;
        opacity: 1;
    }
    66% {
        background-position: 20px 40px, 120px 90px, 220px 140px, 0 0;
        opacity: 0.9;
    }
    100% {
        background-position: 0 0, 100px 50px, 200px 100px, 0 0;
        opacity: 0.8;
    }
}

@keyframes sophisticatedGlow {
    0% {
        background-position: 0 0, 100px 100px, 200px 200px;
        opacity: 0.6;
    }
    50% {
        background-position: 30px 30px, 130px 130px, 230px 230px;
        opacity: 0.9;
    }
    100% {
        background-position: 0 0, 100px 100px, 200px 200px;
        opacity: 0.6;
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes underlineReveal {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 240px;
        opacity: 1;
    }
}

/* Add a subtle pulsing effect to the main underline */
@keyframes underlinePulse {
    0%, 100% {
        box-shadow: 
            0 0 8px rgba(249, 115, 22, 0.4),
            0 0 16px rgba(249, 115, 22, 0.2);
    }
    50% {
        box-shadow: 
            0 0 12px rgba(249, 115, 22, 0.6),
            0 0 24px rgba(249, 115, 22, 0.3);
    }
}



.about-me .container {
    position: relative;
    z-index: 1;
}

/* REVISED: About Content Layout to float image left */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.about-content > div {
    flex: 1;
}

/* Mobile layout - stack vertically */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-content > div {
        flex: none;
    }
}



.about-headshot {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* More consistent */
  border: 4px solid #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-headshot:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #f59e0b;
}


.about-content p {
    text-align: left; /* Ensure paragraphs align left */
    margin-bottom: 1.5em; /* Consistent paragraph spacing */
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.7;
}
/* Ensure no extra margin for the very last paragraph in a section if needed */
.about-content p:last-child {
    margin-bottom: 0;
}


/* For smaller screens, adjust about-content to ensure stacking */
@media (max-width: 768px) {
    .about-headshot {
        float: none; /* Remove float */
        display: block; /* Make it a block element */
        margin: 0 auto 30px auto; /* Center image and add bottom margin */
    }
    .about-headshot:hover {
        transform: scale(1.02); /* Smaller scale on mobile */
    }
    .about-content {
        text-align: center; /* Center content when stacked */
    }
    .about-content p {
        text-align: center; /* Center text when stacked below image */
        flex-basis: auto; /* Reset flex-basis if it was applied */
    }
}

.about-me h2 {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-family: 'Inter Tight', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-me h2:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 115, 22, 0.3);
}

.about-me h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; /* Start with 0 width for animation */
    height: 3px; /* Thinner, more elegant */
    background: linear-gradient(90deg, 
        #f97316 0%, 
        #ea580c 50%, 
        #f97316 100%
    );
    border-radius: 2px;
    z-index: 1;
    animation: underlineReveal 1.8s ease-out 0.3s forwards, underlinePulse 4s ease-in-out infinite 2.1s; /* Slightly faster + gentler pulsing */
    box-shadow: 
        0 0 8px rgba(249, 115, 22, 0.4),
        0 0 16px rgba(249, 115, 22, 0.2); /* Reduced glow */
}

/* Removed second underline for cleaner look */

/* Explore Newsletters Section Specific Styles */
.explore-newsletters {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add floating elements to the section */
.explore-newsletters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Add floating orbs around the section */
.explore-newsletters::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Add additional floating elements */
.explore-newsletters .floating-element-1 {
    content: '';
    position: absolute;
    top: 60%;
    left: 3%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.explore-newsletters .floating-element-2 {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 12s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 1;
}

.explore-newsletters h2 {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease-out 0.3s forwards;
}

.explore-newsletters .container p {
    color: #cbd5e1;
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease-out 0.6s forwards;
}

/* Enhanced benefits grid with staggered animations */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-item {
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 480px;
    opacity: 0;
    transform: translateY(50px);
    animation: cardReveal 1s ease-out forwards;
}

/* Staggered card animations */
.benefit-item:nth-child(1) { animation-delay: 0.9s; }
.benefit-item:nth-child(2) { animation-delay: 1.1s; }
.benefit-item:nth-child(3) { animation-delay: 1.3s; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    z-index: 1;
    transition: all 0.5s ease;
}

.benefit-item > * {
    position: relative;
    z-index: 2;
}

/* Enhanced hover effects for all cards */
.benefit-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-item:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Table Talk Card - Enhanced Blue Theme */
.table-talk-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    border-color: rgba(59, 130, 246, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.table-talk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.table-talk-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M20 0c11.046 0 20 8.954 20 20s-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0zm0 2C10.059 2 2 10.059 2 20s8.059 18 18 18 18-8.059 18-18S29.941 2 20 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
    transition: all 0.5s ease;
}

.table-talk-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.6);
}

.table-talk-card:hover::after {
    opacity: 0.8;
    transform: scale(1.1);
}

.table-talk-card .newsletter-type {
    background: rgba(147, 197, 253, 0.25);
    border-color: rgba(147, 197, 253, 0.4);
    color: #eff6ff;
    position: relative;
    transition: all 0.3s ease;
}

.table-talk-card:hover .newsletter-type {
    background: rgba(147, 197, 253, 0.35);
    border-color: rgba(147, 197, 253, 0.6);
    transform: scale(1.05);
}

.table-talk-card .card-buttons .button:first-child {
    background: rgba(147, 197, 253, 0.2);
    border-color: rgba(147, 197, 253, 0.4);
    color: #eff6ff;
    transition: all 0.3s ease;
}

.table-talk-card .card-buttons .button:first-child:hover {
    background: rgba(147, 197, 253, 0.3);
    border-color: rgba(147, 197, 253, 0.6);
    color: #dbeafe;
    transform: translateY(-2px);
}

.table-talk-card .card-buttons .button.button-secondary {
    background: rgba(191, 219, 254, 0.15) !important;
    border-color: rgba(191, 219, 254, 0.3) !important;
    color: #f0f9ff !important;
    position: relative;
    animation: freeButtonPulse 3s ease-in-out infinite;
}

.table-talk-card .card-buttons .button.button-secondary:hover {
    background: rgba(191, 219, 254, 0.25) !important;
    border-color: rgba(191, 219, 254, 0.5) !important;
    color: #e0f2fe !important;
    transform: translateY(-3px) scale(1.05);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

/* No Onion, No Garlic Card - Enhanced Green Theme */
.no-onion-no-garlic-card {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    border-color: rgba(16, 185, 129, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.no-onion-no-garlic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.no-onion-no-garlic-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30S46.569 60 30 60 0 46.569 0 30 13.431 0 30 0zm0 4C15.641 4 4 15.641 4 30s11.641 26 26 26 26-11.641 26-26S44.359 4 30 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 1;
    transition: all 0.5s ease;
}

.no-onion-no-garlic-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.6);
}

.no-onion-no-garlic-card:hover::after {
    opacity: 0.9;
    transform: scale(1.1);
}

.no-onion-no-garlic-card .newsletter-type {
    background: rgba(110, 231, 183, 0.25);
    border-color: rgba(110, 231, 183, 0.4);
    color: #ecfdf5;
    position: relative;
    transition: all 0.3s ease;
}

.no-onion-no-garlic-card:hover .newsletter-type {
    background: rgba(110, 231, 183, 0.35);
    border-color: rgba(110, 231, 183, 0.6);
    transform: scale(1.05);
}

.no-onion-no-garlic-card .card-buttons .button:first-child {
    background: rgba(110, 231, 183, 0.2);
    border-color: rgba(110, 231, 183, 0.4);
    color: #ecfdf5;
    transition: all 0.3s ease;
}

.no-onion-no-garlic-card .card-buttons .button:first-child:hover {
    background: rgba(110, 231, 183, 0.3);
    border-color: rgba(110, 231, 183, 0.6);
    color: #d1fae5;
    transform: translateY(-2px);
}

.no-onion-no-garlic-card .card-buttons .button.button-secondary {
    background: rgba(134, 239, 172, 0.15) !important;
    border-color: rgba(134, 239, 172, 0.3) !important;
    color: #f0fdf4 !important;
    position: relative;
    animation: freeButtonPulse 3s ease-in-out infinite 0.5s;
}

.no-onion-no-garlic-card .card-buttons .button.button-secondary:hover {
    background: rgba(134, 239, 172, 0.25) !important;
    border-color: rgba(134, 239, 172, 0.5) !important;
    color: #dcfce7 !important;
    transform: translateY(-3px) scale(1.05);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

/* Support Card - Enhanced Purple Theme */
.support-me-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    border-color: rgba(168, 85, 247, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.support-me-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 0c11.046 0 20 8.954 20 20s-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0zm0 2C10.059 2 2 10.059 2 20s8.059 18 18 18 18-8.059 18-18S29.941 2 20 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
    transition: all 0.5s ease;
}

.support-me-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(168, 85, 247, 0.5);
    border-color: rgba(168, 85, 247, 0.6);
}

.support-me-card:hover::after {
    opacity: 0.7;
    transform: scale(1.1);
}

.support-me-card .newsletter-type {
    background: rgba(196, 181, 253, 0.25);
    border-color: rgba(196, 181, 253, 0.4);
    color: #faf5ff;
    position: relative;
    transition: all 0.3s ease;
}

.support-me-card:hover .newsletter-type {
    background: rgba(196, 181, 253, 0.35);
    border-color: rgba(196, 181, 253, 0.6);
    transform: scale(1.05);
}

.support-me-card .card-buttons .button:first-child {
    background: rgba(196, 181, 253, 0.2);
    border-color: rgba(196, 181, 253, 0.4);
    color: #faf5ff;
    transition: all 0.3s ease;
}

.support-me-card .card-buttons .button:first-child:hover {
    background: rgba(196, 181, 253, 0.3);
    border-color: rgba(196, 181, 253, 0.6);
    color: #f3e8ff;
    transform: translateY(-2px);
}

/* Enhanced icon styling for support card */
.support-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5em !important;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    font-weight: normal;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 120px !important;
    height: 120px !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: iconFloat 4s ease-in-out infinite;
}

.support-icon-placeholder:hover {
    transform: translateY(-12px) scale(1.1) rotate(5deg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
    color: #dc2626;
    animation: iconFloat 2s ease-in-out infinite;
}

/* Enhanced animated elements */
.table-talk-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: rgba(147, 197, 253, 0.9);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.no-onion-no-garlic-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: rgba(110, 231, 183, 0.8);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite 0.5s;
    z-index: 1;
}

.support-me-card::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: rgba(196, 181, 253, 1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite 1s;
    z-index: 1;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Enhanced Newsletter Icon Wrapper Styling */
.newsletter-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    flex: 1;
    justify-content: flex-start;
}

.newsletter-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: iconFloat 4s ease-in-out infinite;
}

.newsletter-icon:hover {
    transform: translateY(-12px) scale(1.1) rotate(5deg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
    animation: iconFloat 2s ease-in-out infinite;
}

.benefit-item h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Enhanced FREE badge styling */
.free-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(245, 158, 11, 0.5);
    animation: freeButtonPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.free-badge:hover {
    transform: scale(1.1);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

@keyframes freeButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        transform: scale(1);
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }
    50% {
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.8);
        transform: scale(1.05);
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
    }
}

/* Enhanced Support badge styling */
.support-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.support-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1.05rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Enhanced card buttons */
.card-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-buttons .button {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-buttons .button:first-child {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
}

.card-buttons .button:first-child:hover,
.card-buttons .button:first-child:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.card-buttons .button:last-child {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 28px;
    animation: subscribe-breathing 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.card-buttons .button:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card-buttons .button:last-child:hover::before,
.card-buttons .button:last-child:active::before {
    left: 100%;
}

.card-buttons .button:last-child:hover,
.card-buttons .button:last-child:active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    color: white;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

@keyframes subscribe-breathing {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
        border-color: #f59e0b;
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
        transform: scale(1.03);
        background: rgba(255, 255, 255, 0.25);
        border-color: #fbbf24;
    }
}

/* New animations for text and card reveals */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Enhanced responsive adjustments */
@media (max-width: 768px) {
    .explore-newsletters {
        padding: 40px 20px;
    }
    
    .explore-newsletters h2 {
        font-size: 2rem;
    }
    
    .explore-newsletters .container p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-item h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .card-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-buttons .button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .explore-newsletters h2 {
        font-size: 2rem;
    }
    
    .explore-newsletters .container p {
        font-size: 1rem;
    }
    
    .benefit-item {
        min-height: 350px;
        padding: 25px 15px;
    }
    
    .newsletter-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-item h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .newsletter-type {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* NEW: Supporter Content Section Styles */
.supporter-content-section {
    background: linear-gradient(135deg, #eaf1f5 0%, #d4dee7 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.supporter-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.supporter-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.supporter-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.supporter-subtitle {
    font-size: 1.3rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 24px;
    font-weight: 400;
}



.supporter-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.supporter-card {
    background: rgba(240, 248, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.supporter-card:hover {
    transform: translateY(-8px);
    background: rgba(240, 248, 255, 0.7);
    border-color: rgba(84, 126, 146, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.supporter-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(84, 126, 146, 0.3));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 10px;
    animation: breathing-glow 3s ease-in-out infinite;
}

.supporter-card:hover .supporter-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(84, 126, 146, 0.4));
    animation: breathing-glow 2s ease-in-out infinite;
}

@keyframes breathing-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(84, 126, 146, 0.3), 0 0 40px rgba(84, 126, 146, 0.2), 0 0 60px rgba(84, 126, 146, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(84, 126, 146, 0.4), 0 0 60px rgba(84, 126, 146, 0.3), 0 0 90px rgba(84, 126, 146, 0.2);
        transform: scale(1.02);
    }
}

.supporter-card h3 {
    font-size: 2rem;
    color: #1e293b;
    text-shadow: none;
    margin-bottom: 16px;
    text-align: center;
}

.supporter-card p {
    color: #475569;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat {
    font-size: 0.9rem;
    color: #8ca6b9;
    background: rgba(140, 166, 185, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(140, 166, 185, 0.2);
    font-weight: 500;
}

.supporter-cta {
    display: inline-block;
    font-size: 1.1rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF6C37, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 108, 55, 0.3);
    width: 100%;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Newsletter-specific card styling with colored borders */
.supporter-card.table-talk-supporter {
    border: 3px solid #4A90E2 !important; /* Brighter, more vibrant blue */
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.supporter-card.table-talk-supporter:hover {
    border-color: #5BA0F2 !important; /* Even brighter blue on hover */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(74, 144, 226, 0.4);
    transform: translateY(-8px);
}

.supporter-card.no-onion-supporter {
    border: 3px solid #6BCF7A !important; /* Brighter, more vibrant green */
    box-shadow: 0 8px 25px rgba(107, 207, 122, 0.3);
    transition: all 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.supporter-card.no-onion-supporter:hover {
    border-color: #7CDF8A !important; /* Even brighter green on hover */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(107, 207, 122, 0.4);
    transform: translateY(-8px);
}

.supporter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.supporter-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 108, 55, 0.4);
    color: white;
}

.supporter-cta:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .supporter-content-section {
        padding: 60px 0;
    }
    
    .supporter-header h2 {
        font-size: 2.5rem;
    }
    
    .supporter-subtitle {
        font-size: 1.1rem;
    }
    
    .supporter-subtitle::after {
        font-size: 1rem;
    }
    
    .supporter-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .supporter-card {
        padding: 30px 24px;
    }
    
    .supporter-logo {
        width: 120px;
        height: 120px;
    }
    
    .supporter-card h3 {
        font-size: 1.5rem;
    }
    
    .supporter-card p {
        font-size: 1rem;
    }
    
    .supporter-cta {
        font-size: 1rem;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .supporter-header h2 {
        font-size: 2rem;
    }
    
    .supporter-subtitle {
        font-size: 1rem;
    }
    
    .supporter-subtitle::after {
        font-size: 0.9rem;
    }
    
    .supporter-card {
        padding: 24px 20px;
    }
    
    .supporter-logo {
        width: 100px;
        height: 100px;
    }
    
    .supporter-card h3 {
        font-size: 1.3rem;
    }
    
    .supporter-card p {
        font-size: 0.95rem;
    }
    
    .card-stats {
        gap: 8px;
    }
    
    .stat {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

/* Call to Action Section (now just a general connect section) */
.call-to-action-section {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

/* Call to Action animations */
.call-to-action-section h2,
.call-to-action-section p,
.call-to-action-section .button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.call-to-action-section h2.reveal,
.call-to-action-section p.reveal,
.call-to-action-section .button.reveal {
    opacity: 1;
    transform: translateY(0);
}

.call-to-action-section h2 {
    transition-delay: 0.1s;
}

.call-to-action-section p {
    transition-delay: 0.2s;
}

.call-to-action-section .button {
    transition-delay: 0.3s;
}

.call-to-action-section h2 {
    color: #ffffff;
}

.call-to-action-section p {
    color: var(--light-text);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.call-to-action-section .button {
    margin-top: 0;
    align-self: center;
    width: auto;
    padding: 15px 40px;
}

/* --- Contact Form Section Styles --- */
.contact-section {
    background-color: var(--lighter-grey-bg);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Contact section animations */
.contact-section h2,
.contact-section .contact-intro,
.contact-section .contact-form {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.contact-section h2.reveal,
.contact-section .contact-intro.reveal,
.contact-section .contact-form.reveal {
    opacity: 1;
    transform: translateY(0);
}

.contact-section h2 {
    transition-delay: 0.1s;
}

.contact-section .contact-intro {
    transition-delay: 0.2s;
}

.contact-section .contact-form {
    transition-delay: 0.3s;
}

/* Subtle pattern for contact section */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d0d7e0' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zm1 6v-1L1 0h1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-intro {
    font-size: 1.1em;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow-medium);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(53, 124, 165, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Mobile adjustments for form focus */
@media (max-width: 768px) {
    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group textarea:focus {
        transform: translateY(-1px); /* Smaller movement on mobile */
    }
}

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

.contact-form .button {
    margin-top: 0;
    align-self: center;
    width: auto;
    padding: 15px 40px;
}

/* Hide Netlify honeypot field visually */
.hidden {
    display: none;
}

/* Skip link styling */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0 0 5px 5px;
    transition: top 0.3s ease-in-out;
}

.skip-link:focus {
    top: 0;
}

/* Other CSS rules... */

/* Other CSS rules... */

/* Footer Styling */
footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  padding: 20px;
  text-align: center;
  border-top: 5px solid var(--primary-blue);
  font-size: 0.9em;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: var(--light-text);
}



/* --- Newsletter Specific Styles (for table-talk.html and no-onion-no-garlic.html) --- */
.newsletter-intro {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-light);
}

.newsletter-intro h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.2em;
}

.newsletter-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-intro p strong {
    font-weight: 700;
    color: var(--dark-text);
}

.what-you-get {
    padding: 60px 20px;
    text-align: center;
}

.what-you-get h2 {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-size: 2.2em;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted for better small screen fit */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-light);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid; /* Default for content items */
    display: flex; /* Flexbox for internal content alignment */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden; /* For pattern on content item */
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d0d7e0' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zm1 6v-1L1 0h1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.content-item > * {
    position: relative;
    z-index: 1;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow-medium);
}

.content-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    text-align: left;
    width: 100%; /* Ensure heading takes full width within flex item */
}

.content-item p {
    font-size: 0.95em;
    color: var(--medium-text);
    text-align: left;
    line-height: 1.7;
    margin-bottom: 0; /* Remove default paragraph bottom margin if last */
}

/* Specific border colors for newsletter content items */
.table-talk-card-content-item {
    border-color: var(--primary-blue);
}

.no-onion-no-garlic-card-content-item {
    border-color: var(--accent-green);
}

/* Call to Action Subscribe Sections (used on newsletter pages) */
.cta-subscribe {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-subscribe h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-subscribe p {
    font-size: 1.1em;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-subscribe .button {
    margin: 10px; /* Space out buttons if side-by-side */
    border-color: #ffffff; /* White border for contrast on blue background */
}

.cta-subscribe .button:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Upcoming Topics Section (for No Onion, No Garlic page) */
.upcoming-topics {
    padding: 60px 0;
    text-align: center;
    background-color: var(--lighter-grey-bg);
}

.upcoming-topics h2 {
    color: var(--accent-green);
    margin-bottom: 40px;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 40px auto;
}

.upcoming-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-medium);
    text-align: left;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Transition for animation */
    opacity: 0; /* Initial state for animation */
    transform: translateY(20px) scale(0.98);
    border-top: 5px solid var(--accent-green); /* Consistent border for upcoming topics */
}

.upcoming-item.show { /* Class added by animations.js */
    opacity: 1;
    transform: translateY(0) scale(1);
}

.upcoming-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px var(--shadow-strong);
}

.topic-title {
    color: var(--primary-blue);
    font-size: 1.4em;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600; /* Ensure this is bold */
}

.topic-description {
    font-size: 0.95em;
    color: var(--medium-text);
    line-height: 1.6;
    text-align: left;
}

.upcoming-note {
    margin-top: 40px;
    font-size: 1em;
    color: var(--medium-text);
    font-style: italic;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Default for larger screens */
}

.site-logo {
    font-family: 'Lora', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.nav-cta-tag {
  border: 2px solid #ff7433;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  color: #ff7433;
  background-color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 40px; /* more space from nav links */
  display: inline-block;
  line-height: 1.2;
}

.nav-cta-tag:hover {
  background-color: #ff7433;
  color: white;
  transform: translateY(-2px);
}

/* Hamburger menu for mobile */
.menu-toggle {
    display: none; /* Hidden by default, shown only on mobile */
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animation for hamburger icon - REMOVED OLD RULES */

.site-logo {
  animation: logoGlow 1.5s ease-in-out;
}

@keyframes glowOnce {
  0% {
    text-shadow: 0 0 0px rgba(0, 123, 255, 0);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
  }
  100% {
    text-shadow: 0 0 0px rgba(0, 123, 255, 0);
  }
}




@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
 }


/* ========== Modern About Section Styles ========== */

.hero-variable-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2vw + 0.8rem, 2rem);
  font-style: italic;
  font-weight: 300;
  text-align: center;
  color: #547e92; /* Studio-forward cyan-gray */
  text-shadow: 0 0 6px rgba(84, 126, 146, 0.3);
  letter-spacing: 0.3px;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.3s;
  margin-top: 8px;
}

#typed-text {
  white-space: pre;
}

#cursor {
  display: inline-block;
  font-weight: bold;
  margin-left: 2px;
  color: #547e92;
  text-shadow: 0 0 4px rgba(84, 126, 146, 0.4);
  animation: cursorGlow 1.2s ease-in-out infinite;
}

@keyframes cursorGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 4px rgba(84, 126, 146, 0.4);
  }
  50% {
    opacity: 0;
    text-shadow: 0 0 2px rgba(84, 126, 146, 0.2);
  }
}




.scroll-cue {
  text-align: center;
  margin-top: 30px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-cue span {
  display: inline-block;
  transform: translateY(0);
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.8;
  }
}

/* --- Featured Quote Block --- */
.featured-quote {
  background-color: var(--lighter-grey-bg);
  padding: 80px 0;
  text-align: center;
}

.featured-quote blockquote {
  font-family: 'Lora', serif;
  font-size: 1.4em;
  font-style: italic;
  color: #2c3e50;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  background-color: #ffffff;
  border-left: 4px solid var(--primary-blue);
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.3px;
}

.featured-quote p {
  margin-bottom: 1.4em;
}

.quote-divider {
  width: 60px;
  height: 1px;
  background-color: #ccc;
  border: none;
  margin: 30px auto 0;
  opacity: 0.5;
}


/* --- Signature Quote Block --- */
.signature-quote {
  background-color: var(--lighter-grey-bg);
  padding: 100px 0;
  text-align: center;
}

.signature-quote .quote-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding-left: 40px;
}

.signature-quote .quote-accent {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 5rem;
  line-height: 1;
  color: rgba(44, 62, 80, 0.15);
  font-family: 'Lora', serif;
}

.signature-quote .quote-text {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.signature-quote .quote-text p {
  margin-bottom: 1.2em;
}


/* --- Narrative Lightspace Quote Block --- */
.narrative-lightspace {
  position: relative;
  padding: 140px 0;
  background-color: var(--lighter-grey-bg);
  overflow: hidden;
}

.quote-canvas {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.quote-background-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 8rem;
  font-family: 'Lora', serif;
  text-align: center;
  color: rgba(44, 62, 80, 0.035);
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 2px;
  text-transform: lowercase;
  white-space: nowrap;
}

.quote-lines {
  position: relative;
  z-index: 2;
}

.quote-line {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 1.2em;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease-out var(--delay), transform 0.7s ease-out var(--delay);
  display: block;
  white-space: normal;
}

.quote-line.show {
  opacity: 1;
  transform: translateY(0);
}

.quote-line:first-of-type::before,
.quote-line:last-of-type::after {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  color: #2c3e50;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  position: relative;
}

.quote-line:first-of-type::before {
  content: '“';
  margin-right: 4px;
  top: -0.25em;
}

.quote-line:last-of-type::after {
  content: '”';
  margin-left: 4px;
  top: -0.1em;
}



/* --- Immersive Quote Sequence --- */
.immersive-quote {
  background-color: var(--lighter-grey-bg);
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.quote-viewport {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}



.quote-backdrop-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-family: 'Lora', serif;
  color: rgba(44, 62, 80, 0.15);
  letter-spacing: 1px;
  text-transform: lowercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.quote-backdrop-word {
  transition: opacity 0.6s ease-in-out;
  opacity: 0.18; /* Boost to make it more visible when animated */
}

.background-text {
  opacity: 0.12;
  filter: blur(2px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.background-text.fade-in {
  opacity: 0.18;
  filter: blur(1.5px);
  transition: opacity 0.8s ease, filter 0.8s ease;
}


.quote-lines {
  position: relative;
  z-index: 2;
}


  /* Remove max-width */

.quote-line.show {
  opacity: 1;
  transform: translateY(0);
}





/* Custom Properties (Variables) for easy color management */
:root {
    --primary-blue: #357ca5; /* New Primary Blue */
    --primary-blue-dark: #2a6a90; /* Darker New Primary Blue for hover/active states */
    --accent-green: #5C8D55; /* Accent Green for No Onion, No Garlic */
    --accent-green-dark: #4a7546; /* Darker Accent Green */
    --light-grey-bg: #f2f5f9; /* Subtle warmth added */
    --lighter-grey-bg: #f5f8fc; /* Enhanced warmth */
    --dark-text: #1a2a3a; /* Richer navy for better prominence */
    --medium-text: #2c3e50; /* Enhanced contrast */
    --light-text: #ecf0f1;
    --border-light: #e0e6ed;
    --shadow-light: rgba(0, 0, 0, 0.05); /* Subtle shadow */
    --shadow-medium: rgba(0, 0, 0, 0.1); /* Medium shadow */
    --shadow-strong: rgba(0, 0, 0, 0.2); /* Stronger shadow */
    --shadow-prominent: rgba(0,0,0,0.3); /* Prominent shadow for icons */
    --button-secondary: #FF6C37; /* Unified vibrant orange for Subscribe buttons */
    --button-secondary-dark: #E55A2B; /* Darker orange for hover (accessible contrast) */
    --success-green: #4CAF50; /* Standard green for success messages */
    --error-red: #F44336; /* Standard red for error messages */
    --warning-orange: #FF9800; /* Standard orange for warnings */
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--light-grey-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--primary-blue-dark);
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 600; }
h5 { font-size: 1.5rem; font-weight: 600; }
h6 { font-size: 1.2rem; font-weight: 600; }

p {
  margin-bottom: 1em;
}

.lead-paragraph {
  font-size: 1.3rem;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--medium-text);
  margin-bottom: 2em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--light-text);
  box-shadow: 0 4px 8px var(--shadow-medium);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  box-shadow: 0 6px 12px var(--shadow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--button-secondary);
  color: var(--light-text);
  box-shadow: 0 4px 8px var(--shadow-medium);
}

.btn-secondary:hover {
  background-color: var(--button-secondary-dark);
  box-shadow: 0 6px 12px var(--shadow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--light-text);
  box-shadow: 0 4px 8px var(--shadow-medium);
}

/* Navbar */
.main-nav {
  background-color: rgba(255, 248, 242, 0.86);  /* warm tint for hero section */
  backdrop-filter: blur(10px);                 /* frosted effect */
  -webkit-backdrop-filter: blur(10px);         /* Safari support */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* soft line */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);    /* optional soft shadow */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Navigation background transition after hero section */
.main-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);  /* clean white with slight transparency */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.site-logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  color: var(--dark-text);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--primary-blue-dark);
}

/* Base Nav Links Styles (Mobile-First Default) */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  /* By default, for mobile, these will be hidden and controlled by JS toggle */
  /* No 'display: flex' here, as that will be added specifically for desktop */
  /* No 'gap' here, as that's for desktop flex */
}

.nav-links li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff7433; /* brand orange */
  transition: width 0.3s ease, left 0.3s ease, background-color 0.3s ease;
  transform: translateX(-50%);
}

/* Hover state - subtle background highlight */
.nav-links li a:hover::after {
  width: 0; /* Remove the line on hover */
  background-color: transparent;
}

.nav-links li a:hover {
  color: var(--primary-blue-dark);
  background-color: rgba(255, 108, 55, 0.1); /* Light orange background */
  padding: 8px 12px;
  border-radius: 6px;
  margin: -8px -12px; /* Compensate for padding */
}

/* Active state - prominent orange background with white text */
.nav-links li a.active::after {
  width: 0; /* Remove the line */
  background-color: transparent;
}

.nav-links li a.active {
  color: white !important;
  background-color: #ff7433; /* Solid orange background */
  padding: 8px 12px;
  border-radius: 6px;
  margin: -8px -12px; /* Compensate for padding */
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 108, 55, 0.3);
}

.nav-links li a:hover {
  color: var(--primary-blue-dark);
}

.nav-links li a.active {
  color: var(--primary-blue-dark);
  font-weight: 600; /* Make active link slightly bolder */
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  background: #333333;
  border: none;
  cursor: pointer;
  padding: 12px 10px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   WORKING MOBILE NAVIGATION - SIMPLE & RELIABLE
   ======================================== */

/* Base styles - hide hamburger by default */
.menu-toggle {
  display: none;
}

/* Desktop styles - show navigation links */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

/* Mobile styles - hide navigation links, show hamburger */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .nav-links {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #FF6C37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(255, 108, 55, 0.3);
    position: relative;
  }

  /* Hamburger lines */
  .hamburger {
    width: 28px;
    height: 4px;
    background: #ffffff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Mobile menu when active */
  .nav-links.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: auto;
    min-height: 300px;
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 60px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    gap: 0;
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: dropdownEntrance 0.3s ease-out;
  }

  /* Mobile menu links */
  .nav-links.active li {
    margin: 0;
    padding: 0;
  }

  .nav-links.active li a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    letter-spacing: 0.4px;
    border-bottom: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links.active li a:hover {
    color: #ff5e1a;
    font-weight: 600;
  }

  .nav-links.active li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #ff5e1a);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
  }

  .nav-links.active li a:hover::after,
  .nav-links.active li a.active::after {
    transform: translateX(-50%) scaleX(1);
  }

  .nav-links.active li a.active {
    color: #ff5e1a !important;
    font-weight: 600 !important;
    background: none !important;
    border-left: none !important;
    padding-left: 0 !important;
  }



  /* Hamburger animation - transforms to X when active */
  .menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(12px) rotate(45deg) !important;
  }

  .menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
  }

  .menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg) !important;
  }

  /* Add a subtle glow effect to the X when active */
  .menu-toggle.active .hamburger {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
  }

  /* Dropdown entrance animation */
  @keyframes dropdownEntrance {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


/* About Me Content Section */
.about-header {
  background-color: #054b56;
  padding: 80px 20px; /* Keep horizontal padding for smaller screens */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%; /* Full screen width */
}


.about-header img.about-headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px var(--shadow-medium);
  border: 6px solid #ffffff; /* ensure the border stands out on dark bg */
  flex-shrink: 0;
}

.about-header .lead-paragraph {
  font-size: 1.45rem;
  font-style: italic;
  color: #ffffff; /* quote text is now white */
  line-height: 1.6;
  max-width: 500px;
  flex: 1;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    text-align: center;
  }


/* Footer */
footer {
  background-color: var(--dark-text);
  color: var(--light-text);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* --- Immersive Quote Sequence --- */
.immersive-quote {
  background-color: var(--lighter-grey-bg);
  position: relative; /* For absolute positioning of children */
  padding: 160px 0; /* Generous padding top/bottom */
  overflow: hidden;
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 70vh; /* Ensure enough height for visual balance */
  z-index: 1;
  opacity: 1 !important;
  visibility: visible !important;
  border: 2px solid red; /* Debug border to see the section */
}

.quote-section-inner-container {
    position: relative;
    width: 100%;
    max-width: 900px; /* Control overall width of the section content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem; /* Add some padding inside the container */
}

@keyframes subtlePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.007);
  }
}

.background-text {
    font-family: 'Lora', serif;
    font-size: 10vw;
    font-weight: 700;
    color: var(--medium-text); /* Smarter shade than #ccc */
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
    text-align: center;
    width: 100%;
    animation: subtlePulse 12s ease-in-out infinite;
    transition: opacity 0.6s ease-in-out;
}


.quote-block {
    position: relative; /* For z-index and absolute positioning of quote marks */
    z-index: 1; /* Ensure it's above the background text */
    text-align: center;
    width: 100%;
    max-width: clamp(300px, 75vw, 800px); /* Responsive max-width: min 300px, ideal 75vw, max 800px */
    margin-top: -2rem; /* Pull up to balance with background text */
    opacity: 0; /* Start hidden for animation */
    transform: translateY(20px); /* Start slightly below for animation */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.quote-block.fade-in {
    opacity: 1;
    transform: translateY(0);
}


/* Staggered animation delays for individual lines */
.quote-line:nth-child(1) { transition-delay: 0.2s; }
.quote-line:nth-child(2) { transition-delay: 0.4s; }
.quote-line:nth-child(3) { transition-delay: 0.6s; }
.quote-line:nth-child(4) { transition-delay: 0.8s; }

.quote-line.line-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Specific styles for immersive quote section quote lines */
.immersive-quote .quote-line {
    font-family: 'Georgia', serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.5em;
    opacity: 0.3; /* Start partially visible */
    transform: translateY(30px); /* Start below final position */
    text-align: center;
    max-width: 100%;
    filter: blur(3px); /* Start blurred */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

/* Animation class for quote lines */
.immersive-quote .quote-line.line-fade-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Quote marks styling */
.quote-line:first-of-type::before,
.quote-line:last-of-type::after {
    font-family: 'Lora', serif; /* Use an elegant serif for marks */
    font-size: 8rem; /* Large size for impact */
    color: var(--medium-text); /* Slightly darker than text for contrast */
    position: absolute; /* Position absolutely relative to .quote-block */
    line-height: 1; /* Crucial for vertical alignment */
    z-index: -1; /* Place behind text but above background */
    opacity: 0.2; /* Subtle presence */
}

.quote-line:first-of-type::before,
.quote-line:last-of-type::after {
  background: linear-gradient(to bottom, var(--primary-blue), var(--medium-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* fallback if supported */
  color: transparent;    /* ensure fallback is invisible */
  opacity: 0.3; /* Keep it subtle */
}

.quote-line:first-of-type::before {
    content: "“";
    top: -2.8rem; /* Adjusted for new font and line-height */
    left: -3rem; /* Adjust horizontally */
    transform: translateX(-50%); /* Fine-tune horizontal centering */
}

.quote-line:last-of-type::after {
    content: "”";
    bottom: -3.8rem; /* Adjusted for new font and line-height */
    right: -3rem; /* Adjust horizontally */
    transform: translateX(50%); /* Fine-tune horizontal centering */
}

/* Responsive adjustments for quote section */
@media (max-width: 768px) {
    .background-text {
        font-size: 15vw; /* Make background text larger on smaller screens */
    }
    .quote-line {
        font-size: 1.5rem; /* Adjust quote font size for mobile */
    }
    .quote-line:first-of-type::before,
    .quote-line:last-of-type::after {
        font-size: 6rem; /* Adjust quote marks for mobile */
        top: -1.5rem;
        bottom: -2.5rem;
        left: -2rem;
        right: -2rem;
    }
    .quote-block {
        max-width: 90%; /* Allow quote block to take more width on smaller screens */
        margin-top: -1rem; /* Adjust vertical balance */
    }
    @media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    text-align: center;
  }

  .about-header img.about-headshot {
    margin-bottom: 20px;
  }

  .about-header .lead-paragraph {
    font-size: 1.15rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
    .background-text {
        font-size: 20vw;
    }
    .quote-line {
        font-size: 1.3rem;
    }
    .quote-line:first-of-type::before,
    .quote-line:last-of-type::after {
        font-size: 5rem;
        top: -1rem;
        bottom: -2rem;
        left: -1rem;
        right: -1rem;
    }
    .immersive-quote {
        padding: 80px 0; /* Reduce padding on very small screens */
        min-height: 50vh;
    }
}


h1,
.hero-subline {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

/* Bold orange accent inside headlines */
.highlight-orange {
  color: #FF6C37; /* Unified vibrant orange */
  text-shadow: none; /* Remove any existing text shadows */
  filter: none; /* Remove any filters or effects */
}

/* Entrance animation for hero headline */
.hero-headline-animated {
  opacity: 1 !important;           /* Force visibility */
  transform: none !important;      /* Remove any transform */
  animation: none !important;      /* Disable animation */
}

/* Fade+rise animation keyframes */
@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================= */
/* Newsletter CTA Banner */
/* ========================================= */
.newsletter-cta-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('tomato_on_board.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 4rem;
  margin: 4rem 0;
  border-radius: 16px;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0.1) 20%, 
    rgba(0, 0, 0, 0.25) 60%, 
    rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 500px;
  color: white;
  margin-right: 2rem;
}

.banner-content h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  margin: 0 0 2rem 0;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 116, 51, 0.3);
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 116, 51, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .newsletter-cta-banner {
    height: 300px;
    padding: 2rem;
    justify-content: center;
    text-align: center;
    background-position: center;
  }
  
  .banner-overlay {
    width: 100%;
    background: linear-gradient(180deg, 
      rgba(0, 0, 0, 0) 0%, 
      rgba(0, 0, 0, 0.2) 50%, 
      rgba(0, 0, 0, 0.3) 100%);
  }
  
  .banner-content {
    text-align: center;
  }
  
  .banner-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .banner-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
}

/* ========================================= */
/* Media Queries for Desktop (769px and wider) */
/* ========================================= */
@media (min-width: 769px) {
   body {
     padding-top: 64px; /* ✅ Only for desktop, to clear sticky nav */
   }
   
   .mobile-only-break {
     display: none;
   }
   
   /* Force immersive quote section to be visible on desktop */
   .immersive-quote {
     display: flex !important;
     visibility: visible !important;
     opacity: 1 !important;
     position: relative !important;
     z-index: 1 !important;
     min-height: 70vh !important;
     background-color: var(--lighter-grey-bg) !important;
     border: 2px solid red !important; /* Debug border */
   }
   
   .immersive-quote .quote-block {
     opacity: 1 !important;
     visibility: visible !important;
     display: block !important;
   }
   
   .immersive-quote .quote-line {
     opacity: 1 !important;
     visibility: visible !important;
     display: block !important;
     transform: translateY(0) !important;
     filter: blur(0) !important;
   }
 }
}



  /* Desktop Nav Links */
  .nav-links {
    display: flex;         /* Show nav links */
    position: static;      /* Remove mobile absolute positioning */
    width: auto;           /* Auto width */
    height: auto;          /* Auto height */
    background-color: transparent; /* No background for desktop nav */
    flex-direction: row;   /* Arrange links horizontally */
    align-items: center;   /* Align items vertically centered */
    justify-content: flex-end; /* Push links to the right */
    gap: 20px;             /* Space between nav items */
    transition: none;      /* No transition on desktop */
    transform: none;       /* Remove any mobile transform */
  }

  /* Ensure nav-links.active doesn't interfere */
  .nav-links.active {
    transform: none; /* No transformation when active on desktop */
  }

  /* Hide Hamburger Menu Toggle on Desktop */
  .menu-toggle {
    display: none;
  }



  /* Site Logo Adjustments (if needed - current base size is often fine) */
  /* If you want the site logo to be a different size on desktop, uncomment and adjust */
  /*
  .site-logo {
    font-size: 2em; /* Example: adjust as needed */
  /*
  }
  */

  /* You can add any other desktop-specific styles here */

} /* End of @media (min-width: 769px) */


/* Disable animation for the typing effect subline */
.typed-content {
  opacity: 1 !important;           /* Force visibility */
  transform: none !important;      /* Remove any transform */
  animation: none !important;      /* Disable any animation on this element */
}

.homepage-hero .hero-content {
  max-width: 800px;
  padding: 20px;
}

.homepage-hero .frosted-hero-panel {
  background: rgba(255, 255, 255, 0.65); /* Slightly more opaque for better readability */
  backdrop-filter: blur(12px); /* Enhanced blur for modern feel */
  border-radius: 16px; /* Slightly more rounded */
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1); /* Subtle border glow */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for definition */
}

/* Homepage Hero Specific Centering & Base Styles (Mobile-first default) */
header.hero.homepage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 100vh;
  padding: 10vh 5vw;
  overflow: hidden;
}

/* Optional: If you want to make your content panel narrower on the homepage */
/* If you like your content width as it is, you don't need this block */
/*
.homepage-hero .hero-content {
  max-width: 700px; /* Example: Adjust this as needed for your design */
/*
  width: 100%;
  margin: 0 auto;
}
*/

/* Global homepage hero content alignment */
.homepage-hero .hero-content {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Index page specific hero styling - ensures consistency */
.homepage-hero .hero-content h1.hero-heading {
  text-align: center;
  font-weight: 700;
}


h1.hero-heading {
  font-family: 'Lora', serif;
  color: var(--light-text); /* Use light text for better contrast on dark background */
  font-weight: 700;
  text-align: center;
  font-size: clamp(2.5rem, 4vw + 0.5rem, 3.6rem);
  line-height: 1.2;
  white-space: nowrap; /* Keep on one line on desktop */
  overflow: visible;
  text-overflow: initial;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Enhanced depth for better prominence */
  filter: none; /* Remove any filters or effects */
  letter-spacing: -0.02em; /* Slightly tighter for modern feel */
}

@media (max-width: 768px) {
  h1.hero-heading {
    white-space: normal !important; /* Allow natural line breaks on mobile */
    font-size: clamp(2rem, 6vw, 3rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal; /* Allow breaking after comma */
    line-height: 1.2; /* Improved line height for better readability */
    max-width: 90vw; /* Ensure there's enough space for the break */
    text-shadow: none; /* Remove any text shadows on mobile */
    filter: none; /* Remove any filters on mobile */
    font-weight: 700; /* Keep consistent font weight */
  }
  
  h1.hero-heading .mobile-break {
    display: block; /* Force line break on mobile */
  }
  
  /* Ensure highlight-orange is clean on mobile */
  h1.hero-heading .highlight-orange {
    text-shadow: none;
    filter: none;
    font-weight: inherit; /* Inherit the heading weight */
  }
  
  /* Index page mobile hero styling - ensures proper line break */
  .homepage-hero .hero-content h1.hero-heading {
    text-align: center;
  }
}


.hero h1.hero-headline-animated:not(.hero-heading) {
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
}


.mobile-only-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-break {
    display: block;
  }
}

/* Removed .hero-to-about-gradient styles - no longer needed */

.about-me-content {
  background-color: #f4f6f9;
  padding: 80px 20px 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-panel {
  background-color: #054b56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 120px 60px;
  text-align: left;
  width: 100%;
  min-height: 400px;
  box-sizing: border-box;
}

.about-headshot {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 8px solid white;
  flex-shrink: 0;
}

.about-intro-quote {
  max-width: 650px;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-hero-panel {
    flex-direction: column;
    text-align: center;
    padding: 80px 40px;
    gap: 40px;
    min-height: auto;
  }

  .about-headshot {
    width: 200px;
    height: 200px;
    border: 6px solid white;
  }

  .about-intro-quote {
    font-size: 1.3rem;
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero-panel {
    padding: 60px 30px;
    gap: 30px;
  }

  .about-headshot {
    width: 180px;
    height: 180px;
  }

  .about-intro-quote {
    font-size: 1.2rem;
  }
}

.about-section-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px 100px 20px;
  color: #1a1a1a;
}

.about-section-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #1c3f4c;
  font-weight: 700;
}

.about-section-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
}

/* ========================================
   ABOUT PAGE HERO STYLES - CLEAN OVERRIDES
   ======================================== */

/* About page specific hero layout */
.about-page .homepage-hero {
  min-height: 100vh;
  padding: 10vh 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About page hero content - centered */
.about-page .homepage-hero .hero-content {
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Ensure about page hero heading doesn't override index page */
.about-page .homepage-hero .hero-content h1.hero-heading {
  text-align: center;
}

/* About page specific frosted panel styling - GLASSMORPHISM */
.about-page .frosted-hero-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 900px;
  min-width: 800px;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism inner glow effect */
.about-page .frosted-hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  pointer-events: none;
}

/* About page frosted panel text alignment */
.about-page .frosted-hero-panel h1,
.about-page .frosted-hero-panel p {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* About Me heading - Planted and foundational */
.about-page .frosted-hero-panel h1.hero-heading {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

/* Modern underline for About Me heading - more dramatic */
.about-page .frosted-hero-panel h1.hero-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px; /* Slightly shorter to match "ABOUT ME" text better */
  height: 4px;
  background: #FF6C37;
  border-radius: 2px;
  box-shadow: 
    0 2px 8px rgba(255, 108, 55, 0.3),
    0 0 0 2px rgba(255, 108, 55, 0.1);
}

/* Scrolling Identity - Make it perform */
.about-page .frosted-hero-panel .hero-variable-line {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  position: relative;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Typing effect styling */
.about-page .frosted-hero-panel #typed-wrapper {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  min-width: 100%;
  text-align: center;
}

.about-page .frosted-hero-panel #typed-text {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Blinking cursor with glow effect */
.about-page .frosted-hero-panel #cursor {
  color: #FF6C37;
  font-weight: 700;
  animation: blink 1s infinite;
  text-shadow: 0 0 8px rgba(255, 108, 55, 0.6);
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Tagline - Quiet the voice, deepen the meaning */
.about-page .frosted-hero-panel .hero-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(107, 114, 128, 0.2);
  text-align: center;
}

/* Responsive adjustments for about page hero */
@media (max-width: 768px) {
  .about-page .homepage-hero {
    padding: 10vh 5vw;
    min-height: 70vh;
  }
  
  .about-page .frosted-hero-panel {
    padding: 40px 30px;
    min-width: auto;
    width: calc(100% - 40px);
    max-width: 600px;
    margin: 0 auto;
  }

  .about-page .frosted-hero-panel h1.hero-heading {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }

  .about-page .frosted-hero-panel .hero-variable-line {
    font-size: 2.4rem;
    min-height: 3rem;
    width: 100%;
  }

  .about-page .frosted-hero-panel #typed-wrapper {
    white-space: nowrap;
    min-width: 100%;
  }

  .about-page .frosted-hero-panel .hero-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-page .homepage-hero {
    padding: 8vh 4vw;
    min-height: 60vh;
  }
  
  .about-page .frosted-hero-panel {
    padding: 30px 20px;
    min-width: auto;
    width: calc(100% - 20px);
    max-width: 500px;
    margin: 0 auto;
  }

  .about-page .frosted-hero-panel h1.hero-heading {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }

  .about-page .frosted-hero-panel .hero-variable-line {
    font-size: 2rem;
    min-height: 2.5rem;
    width: 100%;
  }

  .about-page .frosted-hero-panel #typed-wrapper {
    white-space: nowrap;
    min-width: 100%;
  }

  .about-page .frosted-hero-panel .hero-tagline {
    font-size: 0.95rem;
  }
}

/* Premium Supporter Content Section - Glassmorphism Design */
.supporter-content-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.supporter-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.supporter-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.supporter-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    text-transform: none;
}

.supporter-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-weight: 500;
}

.supporter-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.supporter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.supporter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.supporter-card:hover::before {
    opacity: 1;
}

.supporter-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.supporter-logo {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 1;
    position: relative;
    border-radius: 20px;
}

.supporter-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.supporter-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.card-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.4), rgba(191, 219, 254, 0.4));
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(191, 219, 254, 0.5), rgba(219, 234, 254, 0.5));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: #1e40af;
}

.supporter-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.supporter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.supporter-cta:hover::before {
    left: 100%;
}

.supporter-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
    color: #1e293b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .supporter-content-section {
        padding: 60px 20px;
    }
    
    .supporter-header h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .supporter-subtitle {
        font-size: 1.1rem;
    }
    
    .supporter-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .supporter-card {
        padding: 30px 20px;
    }
    
    .supporter-card h3 {
        font-size: 1.8rem;
    }
    
    .card-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Enhanced Explore My Newsletters Section - Bold Theme */
.explore-newsletters {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add floating elements to the section */
.explore-newsletters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Add floating orbs around the section */
.explore-newsletters::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Add additional floating elements */
.explore-newsletters .floating-element-1 {
    content: '';
    position: absolute;
    top: 60%;
    left: 3%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.explore-newsletters .floating-element-2 {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatElement 12s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 1;
}

.explore-newsletters h2 {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease-out 0.3s forwards;
}

.explore-newsletters .container p {
    color: #cbd5e1;
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease-out 0.6s forwards;
}

/* Enhanced benefits grid with staggered animations */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-item {
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 480px;
    opacity: 0;
    transform: translateY(50px);
    animation: cardReveal 1s ease-out forwards;
}

/* Staggered card animations */
.benefit-item:nth-child(1) { animation-delay: 0.9s; }
.benefit-item:nth-child(2) { animation-delay: 1.1s; }
.benefit-item:nth-child(3) { animation-delay: 1.3s; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    z-index: 1;
    transition: all 0.5s ease;
}

.benefit-item > * {
    position: relative;
    z-index: 2;
}

/* Enhanced hover effects for all cards */
.benefit-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-item:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Table Talk Card - Enhanced Blue Theme */
.table-talk-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    border-color: rgba(59, 130, 246, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.table-talk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.table-talk-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M20 0c11.046 0 20 8.954 20 20s-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0zm0 2C10.059 2 2 10.059 2 20s8.059 18 18 18 18-8.059 18-18S29.941 2 20 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
    transition: all 0.5s ease;
}

.table-talk-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.6);
}

.table-talk-card:hover::after {
    opacity: 0.8;
    transform: scale(1.1);
}

.table-talk-card .newsletter-type {
    background: rgba(147, 197, 253, 0.25);
    border-color: rgba(147, 197, 253, 0.4);
    color: #eff6ff;
    position: relative;
    transition: all 0.3s ease;
}

.table-talk-card:hover .newsletter-type {
    background: rgba(147, 197, 253, 0.35);
    border-color: rgba(147, 197, 253, 0.6);
    transform: scale(1.05);
}

.table-talk-card .card-buttons .button:first-child {
    background: rgba(147, 197, 253, 0.2);
    border-color: rgba(147, 197, 253, 0.4);
    color: #eff6ff;
    transition: all 0.3s ease;
}

.table-talk-card .card-buttons .button:first-child:hover {
    background: rgba(147, 197, 253, 0.3);
    border-color: rgba(147, 197, 253, 0.6);
    color: #dbeafe;
    transform: translateY(-2px);
}

.table-talk-card .card-buttons .button.button-secondary {
    background: rgba(191, 219, 254, 0.15) !important;
    border-color: rgba(191, 219, 254, 0.3) !important;
    color: #f0f9ff !important;
    position: relative;
    animation: freeButtonPulse 3s ease-in-out infinite;
}

.table-talk-card .card-buttons .button.button-secondary:hover {
    background: rgba(191, 219, 254, 0.25) !important;
    border-color: rgba(191, 219, 254, 0.5) !important;
    color: #e0f2fe !important;
    transform: translateY(-3px) scale(1.05);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

/* No Onion, No Garlic Card - Enhanced Green Theme */
.no-onion-no-garlic-card {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    border-color: rgba(16, 185, 129, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.no-onion-no-garlic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.no-onion-no-garlic-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30S46.569 60 30 60 0 46.569 0 30 13.431 0 30 0zm0 4C15.641 4 4 15.641 4 30s11.641 26 26 26 26-11.641 26-26S44.359 4 30 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 1;
    transition: all 0.5s ease;
}

.no-onion-no-garlic-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.6);
}

.no-onion-no-garlic-card:hover::after {
    opacity: 0.9;
    transform: scale(1.1);
}

.no-onion-no-garlic-card .newsletter-type {
    background: rgba(110, 231, 183, 0.25);
    border-color: rgba(110, 231, 183, 0.4);
    color: #ecfdf5;
    position: relative;
    transition: all 0.3s ease;
}

.no-onion-no-garlic-card:hover .newsletter-type {
    background: rgba(110, 231, 183, 0.35);
    border-color: rgba(110, 231, 183, 0.6);
    transform: scale(1.05);
}

.no-onion-no-garlic-card .card-buttons .button:first-child {
    background: rgba(110, 231, 183, 0.2);
    border-color: rgba(110, 231, 183, 0.4);
    color: #ecfdf5;
    transition: all 0.3s ease;
}

.no-onion-no-garlic-card .card-buttons .button:first-child:hover {
    background: rgba(110, 231, 183, 0.3);
    border-color: rgba(110, 231, 183, 0.6);
    color: #d1fae5;
    transform: translateY(-2px);
}

.no-onion-no-garlic-card .card-buttons .button.button-secondary {
    background: rgba(134, 239, 172, 0.15) !important;
    border-color: rgba(134, 239, 172, 0.3) !important;
    color: #f0fdf4 !important;
    position: relative;
    animation: freeButtonPulse 3s ease-in-out infinite 0.5s;
}

.no-onion-no-garlic-card .card-buttons .button.button-secondary:hover {
    background: rgba(134, 239, 172, 0.25) !important;
    border-color: rgba(134, 239, 172, 0.5) !important;
    color: #dcfce7 !important;
    transform: translateY(-3px) scale(1.05);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

/* Support Card - Enhanced Purple Theme */
.support-me-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    border-color: rgba(168, 85, 247, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.support-me-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 0c11.046 0 20 8.954 20 20s-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0zm0 2C10.059 2 2 10.059 2 20s8.059 18 18 18 18-8.059 18-18S29.941 2 20 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
    transition: all 0.5s ease;
}

.support-me-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(168, 85, 247, 0.5);
    border-color: rgba(168, 85, 247, 0.6);
}

.support-me-card:hover::after {
    opacity: 0.7;
    transform: scale(1.1);
}

.support-me-card .newsletter-type {
    background: rgba(196, 181, 253, 0.25);
    border-color: rgba(196, 181, 253, 0.4);
    color: #faf5ff;
    position: relative;
    transition: all 0.3s ease;
}

.support-me-card:hover .newsletter-type {
    background: rgba(196, 181, 253, 0.35);
    border-color: rgba(196, 181, 253, 0.6);
    transform: scale(1.05);
}

.support-me-card .card-buttons .button:first-child {
    background: rgba(196, 181, 253, 0.2);
    border-color: rgba(196, 181, 253, 0.4);
    color: #faf5ff;
    transition: all 0.3s ease;
}

.support-me-card .card-buttons .button:first-child:hover {
    background: rgba(196, 181, 253, 0.3);
    border-color: rgba(196, 181, 253, 0.6);
    color: #f3e8ff;
    transform: translateY(-2px);
}

/* Enhanced icon styling for support card */
.support-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5em !important;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    font-weight: normal;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 120px !important;
    height: 120px !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: iconFloat 4s ease-in-out infinite;
}

.support-icon-placeholder:hover {
    transform: translateY(-12px) scale(1.1) rotate(5deg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
    color: #dc2626;
    animation: iconFloat 2s ease-in-out infinite;
}

/* Enhanced animated elements */
.table-talk-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: rgba(147, 197, 253, 0.9);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.no-onion-no-garlic-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: rgba(110, 231, 183, 0.8);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite 0.5s;
    z-index: 1;
}

.support-me-card::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: rgba(196, 181, 253, 1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite 1s;
    z-index: 1;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Enhanced Newsletter Icon Wrapper Styling */
.newsletter-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    flex: 1;
    justify-content: flex-start;
}

.newsletter-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: iconFloat 4s ease-in-out infinite;
}

.newsletter-icon:hover {
    transform: translateY(-12px) scale(1.1) rotate(5deg);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
    animation: iconFloat 2s ease-in-out infinite;
}

.benefit-item h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Enhanced FREE badge styling */
.free-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(245, 158, 11, 0.5);
    animation: freeButtonPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.free-badge:hover {
    transform: scale(1.1);
    animation: freeButtonPulse 1.5s ease-in-out infinite;
}

@keyframes freeButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        transform: scale(1);
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }
    50% {
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.8);
        transform: scale(1.05);
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
    }
}

/* Enhanced Support badge styling */
.support-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.support-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1.05rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Enhanced card buttons */
.card-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-buttons .button {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-buttons .button:first-child {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
}

.card-buttons .button:first-child:hover,
.card-buttons .button:first-child:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.card-buttons .button:last-child {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 28px;
    animation: subscribe-breathing 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.card-buttons .button:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.card-buttons .button:last-child:hover::before,
.card-buttons .button:last-child:active::before {
    left: 100%;
}

.card-buttons .button:last-child:hover,
.card-buttons .button:last-child:active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    color: white;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

@keyframes subscribe-breathing {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
        border-color: #f59e0b;
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.6);
        transform: scale(1.03);
        background: rgba(255, 255, 255, 0.25);
        border-color: #fbbf24;
    }
}

/* New animations for text and card reveals */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Enhanced responsive adjustments */
@media (max-width: 768px) {
    .explore-newsletters {
        padding: 40px 20px;
    }
    
    .explore-newsletters h2 {
        font-size: 2rem;
    }
    
    .explore-newsletters .container p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-item h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .card-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-buttons .button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .explore-newsletters h2 {
        font-size: 2rem;
    }
    
    .explore-newsletters .container p {
        font-size: 1rem;
    }
    
    .benefit-item {
        min-height: 350px;
        padding: 25px 15px;
    }
    
    .newsletter-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-item h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .newsletter-type {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* Premium newsletter type styling - Enhanced */
.newsletter-type {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    border: 2px solid !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    white-space: nowrap !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-bottom: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

.newsletter-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.newsletter-type:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-type:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Enhanced badge stack container with better spacing */
.badge-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}

/* Enhanced FREE badge styling */
.free-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5) !important;
    border: 2px solid rgba(245, 158, 11, 0.6) !important;
    animation: freeButtonPulse 3s ease-in-out infinite !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-bottom: 25px !important;
    position: relative !important;
    overflow: hidden !important;
}

.free-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.free-badge:hover::before {
    left: 100%;
}

.free-badge:hover {
    transform: scale(1.05) translateY(-2px) !important;
    animation: freeButtonPulse 1.5s ease-in-out infinite !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.7) !important;
}

@keyframes freeButtonPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
        transform: scale(1);
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }
    50% {
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.9);
        transform: scale(1.03);
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
    }
}

/* Enhanced Support badge styling */
.support-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
    border: 2px solid rgba(139, 92, 246, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-bottom: 25px !important;
}

.support-badge:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.7) !important;
}

/* Specific styling for support card newsletter type */
.support-me-card .newsletter-type {
    background: rgba(196, 181, 253, 0.25) !important;
    border-color: rgba(196, 181, 253, 0.4) !important;
    color: #faf5ff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    border: 2px solid !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    white-space: nowrap !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-bottom: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    display: inline-block !important;
}

.support-me-card .newsletter-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.support-me-card .newsletter-type:hover {
    background: rgba(196, 181, 253, 0.35) !important;
    border-color: rgba(196, 181, 253, 0.6) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.support-me-card .newsletter-type:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

/* Ensure support card badge stack has proper spacing */
.support-me-card .badge-stack {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}

/* "Wow Factor" Support Mission Card - "Keep It Cooking" */
.support-mission-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 30px;
    padding: 40px 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(245, 158, 11, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Grainy texture overlay */
.support-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    z-index: 1;
    transition: all 0.6s ease;
}

.support-mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.support-mission-card:hover::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
}

/* Stove glow effect */
.stove-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    animation: stoveGlow 4s ease-in-out infinite;
}

@keyframes stoveGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Scent trail effect */
.scent-trail {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 60px;
    height: 120px;
    background: linear-gradient(to top, transparent 0%, rgba(245, 158, 11, 0.1) 50%, transparent 100%);
    border-radius: 30px;
    z-index: 1;
    animation: scentRise 6s ease-in-out infinite;
}

@keyframes scentRise {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.2);
    }
}

/* Mission content layout */
.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}



/* Mission text styling */
.mission-text {
    max-width: 700px;
}

.mission-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #faf5ff;
    margin-bottom: 15px;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.6));
    }
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Enhanced CTA button */
.mission-cta {
    margin: 15px 0;
}

.stir-the-pot-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid rgba(245, 158, 11, 0.6);
    box-shadow: 
        0 10px 30px rgba(245, 158, 11, 0.4),
        0 0 50px rgba(245, 158, 11, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stir-the-pot-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.stir-the-pot-button:hover::before {
    left: 100%;
}

.stir-the-pot-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(245, 158, 11, 0.6),
        0 0 80px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.stir-the-pot-button:hover .arrow-animation {
    animation: arrowMoveHover 0.8s ease-in-out infinite;
}

@keyframes arrowMoveHover {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.arrow-animation {
    font-size: 1.2rem;
    font-weight: 700;
    animation: arrowMove 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

/* Mission features */
.mission-features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.6);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
}

/* Feature icons removed for cleaner, more sophisticated look */

.feature-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

/* Responsive design for the mission card */
@media (max-width: 768px) {
    .support-mission-card {
        padding: 40px 20px;
        margin-top: 30px;
        border-radius: 20px;
    }
    
    .mission-content {
        gap: 20px;
    }
    
    .pot-animation {
        width: 80px;
        height: 80px;
    }
    
    .mission-text h3 {
        font-size: 2.2rem;
    }
    
    .mission-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .stir-the-pot-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .mission-features {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        padding: 10px 16px;
    }
    
    .stove-glow {
        width: 150px;
        height: 75px;
    }
    
    .scent-trail {
        width: 40px;
        height: 80px;
        right: 20px;
    }
}

/* Newsletter tagline styling */
.newsletter-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin: 12px 0 18px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    font-style: italic;
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    position: relative;
}

.newsletter-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Override max-width for section description */
.explore-newsletters .container > p {
    max-width: 800px !important;
}

/* Premium Newsletter Cards - Textured Sheer Overlay */
.benefit-item {
    padding: 30px 25px !important;
    min-height: 340px !important;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    border: 3px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 24px !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
}

.benefit-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.15) 0%, 
            rgba(0, 0, 0, 0.20) 25%, 
            rgba(0, 0, 0, 0.18) 50%, 
            rgba(0, 0, 0, 0.22) 75%, 
            rgba(0, 0, 0, 0.15) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E") !important;
    pointer-events: none !important;
    z-index: 2 !important;
    border-radius: 24px !important;
}

.benefit-item::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.02) 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 75%, 
        transparent 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.benefit-item:hover::after {
    opacity: 1 !important;
}

.benefit-item:hover::before {
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.20) 0%, 
            rgba(0, 0, 0, 0.25) 25%, 
            rgba(0, 0, 0, 0.23) 50%, 
            rgba(0, 0, 0, 0.28) 75%, 
            rgba(0, 0, 0, 0.20) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23noise)' opacity='0.12'/%3E%3C/svg%3E") !important;
}

.benefit-item > * {
    position: relative !important;
    z-index: 4 !important;
}

.benefit-item p {
    min-height: 80px !important;
    margin-bottom: 15px !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 1.9 !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
    letter-spacing: 0.03em !important;
    padding: 0 8px !important;
}

.benefit-item p strong {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    margin: 0 2px !important;
}

/* Newsletter audience styling */
.newsletter-audience {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 15px 0 20px 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-style: italic;
    line-height: 1.6;
    padding: 12px 0 !important;
    font-weight: 500;
}

/* Adjust spacing for NONG card to align with Table Talk */
.no-onion-no-garlic-card .newsletter-audience {
    margin-top: 15px !important;
}

.newsletter-audience em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Align body paragraphs */
.no-onion-no-garlic-card p {
    margin-top: 0px !important;
}

/* Enhanced Newsletter Icons - Premium Design */
.benefit-item .newsletter-icon {
    width: 130px !important;
    height: 130px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1) !important;
    border: 5px solid rgba(255, 255, 255, 0.4) !important;
    filter: 
        drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3)),
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)),
        brightness(1.05) contrast(1.1) !important;
    margin-bottom: 25px !important;
    position: relative !important;
}

.benefit-item .newsletter-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: -15px !important;
    right: -15px !important;
    bottom: -15px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

.benefit-item .newsletter-icon:hover {
    transform: translateY(-15px) scale(1.12) rotate(3deg) !important;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    filter: 
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)),
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)),
        brightness(1.1) contrast(1.15) !important;
}

.benefit-item .newsletter-icon:hover::before {
    opacity: 1 !important;
}

/* Enhanced Subscribe Button - Premium Design */
.benefit-item .card-buttons .button:last-child {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    border: 3px solid rgba(245, 158, 11, 0.6) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 18px 32px !important;
    box-shadow: 
        0 12px 35px rgba(245, 158, 11, 0.4),
        0 6px 20px rgba(245, 158, 11, 0.3),
        0 0 60px rgba(245, 158, 11, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1) !important;
    border-radius: 30px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.benefit-item .card-buttons .button:last-child:hover {
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 
        0 20px 50px rgba(245, 158, 11, 0.6),
        0 10px 30px rgba(245, 158, 11, 0.4),
        0 0 80px rgba(245, 158, 11, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15) !important;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    border-color: rgba(245, 158, 11, 0.8) !important;
}

/* FINAL OVERLAY FIX - HIGH SPECIFICITY */
.benefit-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    z-index: 10 !important;
    pointer-events: none !important;
    border-radius: 24px !important;
}

.benefit-item > * {
    position: relative !important;
    z-index: 11 !important;
}

/* HTML-BASED OVERLAY - NEW APPROACH */
.card-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.3) 25%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.2) 75%, 
            rgba(0, 0, 0, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='40' height='40' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E") !important;
    z-index: 5 !important;
    pointer-events: none !important;
    border-radius: 24px !important;
}

.benefit-item .newsletter-title-group,
.benefit-item .newsletter-audience,
.benefit-item p,
.benefit-item .card-buttons {
    position: relative !important;
    z-index: 6 !important;
}

/* Fix button text size consistency */
.benefit-item .card-buttons .button {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    letter-spacing: 0.02em !important;
}

.benefit-item .card-buttons .button-secondary {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    letter-spacing: 0.02em !important;
}

/* Ensure both buttons have identical styling */
.benefit-item .card-buttons .button:first-child,
.benefit-item .card-buttons .button:last-child {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    letter-spacing: 0.02em !important;
}

/* ENHANCED TYPOGRAPHY & ICONS - OPTION 1 */
.explore-newsletters h2 {
    font-size: 4.2rem !important;
    font-weight: 900 !important;
    margin-bottom: 25px !important;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #f9fafb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 8px 32px rgba(255, 255, 255, 0.4) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.05 !important;
}

.explore-newsletters h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 140px !important;
    height: 4px !important;
    background: linear-gradient(90deg, transparent 0%, #f59e0b 50%, transparent 100%) !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
}

/* ENHANCED NEWSLETTER ICONS - MAKE THEM POP */
.benefit-item .newsletter-icon {
    width: 140px !important;
    height: 140px !important;
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border: 4px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    margin-bottom: 15px !important;
    position: relative !important;
    z-index: 6 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.benefit-item .newsletter-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -8px !important;
    left: -8px !important;
    right: -8px !important;
    bottom: -8px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.benefit-item .newsletter-icon:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 1),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 1) !important;
}

.benefit-item .newsletter-icon:hover::before {
    opacity: 1 !important;
}

/* ENHANCED NEWSLETTER TITLES */
.benefit-item h3 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 16px rgba(255, 255, 255, 0.3) !important;
    letter-spacing: -0.02em !important;
}

/* ENHANCED TAGLINE */
.newsletter-tagline {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    margin-bottom: 12px !important;
}

/* ADJUST SPACING - MOVE CONTENT UP AND ADD BOTTOM SPACE */
.newsletter-audience {
    margin: 8px 0 8px 0 !important;
    padding: 8px 0 !important;
}

.benefit-item p {
    margin-bottom: 25px !important;
}

.card-buttons {
    margin-top: 20px !important;
    padding-bottom: 10px !important;
}

/* REMOVE QUOTE MARKS - PRESENT AS OWN WRITING */
.quote-line:first-of-type::before,
.quote-line:last-of-type::after {
    content: "" !important;
    display: none !important;
}

/* ANIMATION DELAYS FOR "WHY I DO THIS" SECTION - HEADER & IMAGE ALREADY VISIBLE, 1 SECOND BETWEEN PARAGRAPHS */
.about-me h2 {
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.about-me img {
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.about-me p:nth-child(1) {
    transition-delay: 1s !important;
}

.about-me p:nth-child(2) {
    transition-delay: 2s !important;
}

.about-me p:nth-child(3) {
    transition-delay: 3s !important;
}

/* DEEP GOLD/AMBER THEME FOR SUPPORT MISSION CARD - BURNISHED BRONZE/TOASTED HONEY */
.support-mission-card {
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 25px 80px rgba(217, 119, 6, 0.4),
        0 0 100px rgba(217, 119, 6, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* ADD SHEER OVERLAY FOR BETTER TEXT READABILITY */
.support-mission-card::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.4) 0%, 
            rgba(0, 0, 0, 0.3) 25%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.2) 75%, 
            rgba(0, 0, 0, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='40' height='40' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E") !important;
    z-index: 5 !important;
    pointer-events: none !important;
    border-radius: 30px !important;
}

.support-mission-card::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E") !important;
}

.support-mission-card:hover {
    box-shadow: 
        0 35px 100px rgba(217, 119, 6, 0.5),
        0 0 150px rgba(217, 119, 6, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.support-mission-card:hover::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E") !important;
}

/* ENSURE TEXT CONTENT IS ABOVE THE OVERLAY */
.support-mission-card .mission-content,
.support-mission-card .mission-text,
.support-mission-card .mission-cta,
.support-mission-card .mission-features {
    position: relative !important;
    z-index: 6 !important;
}

/* OVERRIDE ALL BACKGROUND TEXT RULES - FORCE VISIBILITY */
.background-text {
    opacity: 0.4 !important;
    color: #222 !important;
    font-weight: 700 !important;
    z-index: 0 !important;
}

/* MOBILE MENU IMPROVEMENTS - CLEAN & SIMPLE */
@media (max-width: 768px) {
  /* Simple mobile menu overlay */
  .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
  }

  /* Clean mobile menu container */
  .nav-links.active {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px 0 0 8px;
    padding: 20px 30px 30px;
    width: 280px;
    min-height: 350px;
    max-height: 80vh;
  }

  /* Clean mobile menu links */
  .nav-links.active li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
  }

  .nav-links.active li a:hover {
    color: #FF6C37;
  }

  /* Clean active state - just left border, no background */
  .nav-links.active li a.active {
    border-left: 3px solid #FF6C37 !important;
    color: #FF6C37 !important;
    font-weight: 600 !important;
    padding-left: 12px !important;
    background: none !important;
  }

  /* Simple hamburger button */
  .menu-toggle {
    background: #FF6C37;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 108, 55, 0.3);
    transition: box-shadow 0.2s ease;
  }

  .menu-toggle:hover {
    box-shadow: 0 4px 12px rgba(255, 108, 55, 0.4);
  }

  /* Clean hamburger lines */
  .hamburger {
    background: #ffffff;
  }
}

/* ========================================
   FINAL MOBILE MENU FIX - OVERRIDE EVERYTHING
   ======================================== */

@media (max-width: 768px) {
  /* Force remove any background on mobile menu active items */
  .nav-links.active li a.active,
  .nav-links.active li a:hover,
  .nav-links.active li a {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-left: none !important;
    border-radius: 0 !important;
    padding: 16px 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    color: #333333 !important;
    font-weight: 500 !important;
    position: relative !important;
  }

  /* Elegant divider lines between nav items - force consistency */
  .nav-links.active li::after {
    content: '' !important;
    display: block !important;
    height: 1px !important;
    width: 80% !important;
    background: rgba(0, 0, 0, 0.15) !important;
    margin: 12px auto !important;
    border-radius: 0 !important;
  }

  /* Remove divider from last item */
  .nav-links.active li:last-child::after {
    display: none !important;
  }

  /* Add the thin centered underline for active/hover */
  .nav-links.active li a.active::after,
  .nav-links.active li a:hover::after {
    content: '' !important;
    position: absolute !important;
    bottom: 8px !important;
    left: 50% !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #f59e0b, #ff5e1a) !important;
    transform: translateX(-50%) scaleX(1) !important;
    border-radius: 1px !important;
    z-index: 10 !important;
  }

  /* Default state - no underline */
  .nav-links.active li a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 8px !important;
    left: 50% !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #f59e0b, #ff5e1a) !important;
    transform: translateX(-50%) scaleX(0) !important;
    transition: transform 0.3s ease !important;
    border-radius: 1px !important;
    z-index: 10 !important;
  }

  /* Hover state - lighter orange text */
  .nav-links.active li a:hover {
    color: #ff8c42 !important;
    font-weight: 600 !important;
  }

  /* Active/selected state - darker orange text and thicker underline */
  .nav-links.active li a.active {
    color: #e55a00 !important;
    font-weight: 700 !important;
  }

  /* Active/selected underline - thicker and darker */
  .nav-links.active li a.active::after {
    height: 3px !important;
    background: linear-gradient(90deg, #e55a00, #ff5e1a) !important;
  }
}

/* ========================================
   ABOUT ME PAGE ENHANCEMENTS - PREMIUM STYLING
   ======================================== */

.about-me-content {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
}

.about-me-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 108, 55, 0.12) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 60% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 10% 60%, rgba(168, 85, 247, 0.06) 0%, transparent 70%),
    radial-gradient(circle at 90% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-me-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.about-section-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-section-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.02em;
}

.about-section-content h2.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-section-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6c37, #f59e0b, #ff6c37);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  box-shadow: 0 0 20px rgba(255, 108, 55, 0.5);
}

.about-section-content h2.reveal::after {
  opacity: 1;
  width: 150px;
}

/* Premium Card Styling for Content Blocks */
.about-content-block {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 3.5rem;
  margin-bottom: 4rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content-block.reveal {
  opacity: 1;
  transform: translateY(0);
}

.about-content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 30%, 
    rgba(255, 255, 255, 0.1) 70%, 
    rgba(255, 255, 255, 0.2) 100%);
  border-radius: 32px;
  z-index: -1;
}

.about-content-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 108, 55, 0.6), 
    rgba(245, 158, 11, 0.6), 
    rgba(255, 108, 55, 0.6), 
    transparent);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 0 20px rgba(255, 108, 55, 0.3);
}

.about-content-block:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.about-content-block p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.about-content-block p:hover {
  color: #f1f5f9;
  transform: translateX(5px);
}

.about-content-block strong {
  color: #ff6c37;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 108, 55, 0.3);
}

/* Floating Elements */
.about-me-content .floating-element-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 108, 55, 0.2), rgba(245, 158, 11, 0.15));
  border-radius: 50%;
  filter: blur(60px);
  animation: floatElement 20s ease-in-out infinite;
  z-index: 0;
}

.about-me-content .floating-element-2 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(16, 185, 129, 0.12));
  border-radius: 50%;
  filter: blur(50px);
  animation: floatElement 25s ease-in-out infinite reverse;
  z-index: 0;
}

.about-me-content .floating-element-3 {
  position: absolute;
  top: 60%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
  border-radius: 50%;
  filter: blur(45px);
  animation: floatElement 18s ease-in-out infinite;
  z-index: 0;
}

.about-me-content .floating-element-4 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 108, 55, 0.08));
  border-radius: 50%;
  filter: blur(35px);
  animation: floatElement 22s ease-in-out infinite reverse;
  z-index: 0;
}

/* Visual Elements (No Icons) */
.about-visual-element {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 108, 55, 0.05), rgba(245, 158, 11, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(255, 108, 55, 0.1);
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.6;
}

.about-visual-element::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255, 108, 55, 0.1), rgba(245, 158, 11, 0.1));
  border-radius: 50%;
  border: 1px solid rgba(255, 108, 55, 0.2);
}

/* Enhanced Typography */
.about-section-content .highlight-text {
  background: linear-gradient(135deg, #ff6c37, #f59e0b, #ff6c37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 108, 55, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.about-section-content .highlight-text:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-me-content {
    padding: 60px 0;
  }
  
  .about-section-content {
    padding: 0 1rem;
  }
  
  .about-section-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .about-content-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-content-block p {
    font-size: 1rem;
  }
  
  .about-visual-element {
    display: none;
  }
  
  .about-me-content .floating-element-1,
  .about-me-content .floating-element-2 {
    display: none;
  }
}