:root {
    --bg-dark: #1a1a1a;
    --text-cream: #efe8dc;
    --text-dark: #1a1a1a;
    --orange-main: #ff6943;
    --blue-pill: #cbe0e8;
    --olive-green: #61704d;
    --font-header: 'Fredoka One', cursive;
    --font-main: 'Readex Pro', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 400; /* Fredoka One is a single-weight font */
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--orange-main);
    margin-bottom: 2rem;
}

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

.text-black {
    color: #000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-orange-pill {
    background-color: var(--orange-main);
    color: white;
}

.btn-blue-pill {
    background-color: var(--blue-pill);
    color: #000;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--orange-main);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 600;
}

.phone-link:hover {
    color: var(--orange-main);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--orange-main);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.hero-image-col, .hero-text-col {
    flex: 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.blob-outline {
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    border: 3px solid var(--olive-green);
    border-radius: 45% 55% 65% 35% / 55% 45% 65% 45%;
    z-index: 1;
}

.blob-solid {
    position: absolute;
    top: 6%;
    left: 8%;
    width: 100%;
    height: 100%;
    background-color: var(--olive-green);
    border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
    z-index: 2;
}

.blob-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    z-index: 3;
}

.blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -40px;
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 20C5 20 10 10 20 10C30 10 35 20 35 20" stroke="%23cbe0e8" stroke-width="4" stroke-linecap="round"/><path d="M10 5L15 15" stroke="%23cbe0e8" stroke-width="4" stroke-linecap="round"/><path d="M30 5L25 15" stroke="%23cbe0e8" stroke-width="4" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    z-index: 10;
}

.hero-text-col p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.learn-more-link {
    color: var(--orange-main);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.shape-top {
    top: -1px;
}

.shape-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.shape-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.shape-mountains svg,
.shape-clouds svg,
.shape-waves svg {
    height: 10vw;
    min-height: 50px;
    max-height: 150px;
}

.shape-brush svg {
    height: 10vw;
    min-height: 40px;
    max-height: 140px;
}

.shape-blob svg {
    height: 8vw;
    min-height: 50px;
    max-height: 120px;
}

/* Video Section */
.video-section {
    position: relative;
    background-color: var(--olive-green);
    padding: calc(10vw + 3rem) 0 calc(10vw + 4rem);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    background-color: var(--orange-main);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 105, 67, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(255, 105, 67, 0.5);
}

.play-button span {
    margin-left: 5px; /* Visual center adjustment for play icon */
}

.video-placeholder:hover .play-button {
    transform: scale(1.15);
    background-color: var(--orange-main);
    box-shadow: 0 0 50px rgba(255, 105, 67, 0.7);
}

/* Process Section */
.process-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 4rem 0 calc(10vw + 4rem);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--orange-main);
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px; /* Padding for the illustration */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1);
    transition: none;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background-color: #ff8566; /* Slightly lighter orange on hover */
}

.process-content h3 {
    color: var(--orange-main);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-container {
    position: relative;
    margin-top: 0;
}



.testimonials-cream {
    position: relative;
    background-color: #EFE8DC;
    padding: 2rem 0 calc(min(10vw, 140px) + 0.5rem);
}

.testimonials-orange {
    position: relative;
    background-color: var(--orange-main);
    padding: 2rem 0 calc(min(10vw, 140px) + 3rem);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.carousel-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-btn:hover {
    opacity: 1;
}

.testimonial-slides {
    position: relative;
    flex: 1;
    width: 100%;
}

.testimonial-slide {
    text-align: center;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-slide p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-name {
    font-weight: 700;
    font-size: 1rem !important;
    font-style: normal !important;
}

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

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* Secondary Page Hero Style */
.page-hero-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-subtitle {
    color: var(--orange-main);
    font-size: 1.5rem;
}

.about-text-col p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.bio-name {
    font-size: 2rem;
    color: var(--orange-main);
    margin-bottom: 0.5rem;
}

.who-we-are-section {
    position: relative;
    background-color: #ffffff;
    padding: calc(10vw + 2rem) 0 4rem;
    color: var(--text-dark);
}

.story-listeners-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: calc(10vw + 4rem) 2rem 6rem;
    text-align: center;
}

.story-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-icon {
    font-size: 3rem;
    color: var(--orange-main);
}

.story-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: white;
}

.bio-section {
    position: relative;
    padding: calc(10vw + 4rem) 0 4rem;
}

.bio-section.bg-white {
    background-color: #ffffff;
    color: var(--text-dark);
}

.bio-section.bg-cream {
    background-color: #EFE8DC;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid.reverse {
        direction: ltr;
    }
    .story-container {
        flex-direction: column;
        gap: 1rem;
    }
    .story-title {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem 4rem;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    background-color: transparent;
    border: 1px solid var(--orange-main);
    border-radius: 8px;
    padding: 0.8rem;
    color: var(--text-cream);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 105, 67, 0.3);
}

.recaptcha-placeholder {
    margin-top: 1rem;
}

.recaptcha-box {
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #333;
}

.submit-btn {
    align-self: center;
    margin-top: 1rem;
}

/* Location Section */
.location-section {
    max-width: 100%;
    background-color: #EFE8DC;
    padding: calc(min(10vw, 140px) + 2rem) 0 4rem;
    position: relative;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.location-image, .location-map-col {
    flex: 1;
}

.image-wrapper-alt {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/3;
}

.blob-outline-alt {
    position: absolute;
    top: -6%;
    left: -6%;
    width: 112%;
    height: 112%;
    border: 3px solid var(--olive-green);
    border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
    z-index: 1;
}

.blob-solid-alt {
    position: absolute;
    top: 8%;
    left: -4%;
    width: 100%;
    height: 100%;
    background-color: var(--olive-green);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    z-index: 2;
}

.blob-mask-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    overflow: hidden;
    z-index: 3;
}

.blob-mask-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    text-align: right;
    margin-bottom: 1rem;
    position: relative;
}

.location-icon {
    color: var(--olive-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-title {
    color: var(--orange-main);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.location-name {
    color: var(--orange-main);
    font-weight: 600;
}

.location-address {
    color: var(--orange-main);
}

.map-container {
    background-color: var(--orange-main);
    padding: 0.5rem;
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-container iframe {
    border-radius: 15px;
}

/* Force Google Maps place card on mobile by simulating a larger width and scaling down */
@media (max-width: 500px) {
    .map-container {
        overflow: hidden;
    }
    .map-container iframe {
        width: 140%;
        height: 140%;
        transform: scale(0.7142);
        transform-origin: top left;
        border-radius: 21px;
    }
}

@media (min-width: 993px) {
    .location-map-col {
        position: relative;
    }
    .location-info {
        position: absolute;
        bottom: 100%;
        right: 0;
        width: 100%;
    }
}

.footer-waves {
    position: relative;
    height: 0;
    margin-top: 0;
}

.footer {
    background-color: var(--bg-dark);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-cream);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background-color: var(--orange-main);
    border-color: var(--orange-main);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 105, 67, 0.3);
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-cta h2 {
    color: var(--orange-main);
    font-size: 2.5rem;
    margin: 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-email, .footer-phone {
    font-weight: 600;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--orange-main);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(239, 232, 220, 0.6);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a:hover {
    color: var(--orange-main);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .location-container {
        flex-direction: column;
    }

    .hero-image-col, .hero-text-col, .location-image, .location-map-col {
        flex: none;
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-btn {
        order: 2;
        display: block;
    }

    .nav-links {
        order: 3;
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f0f0f; /* High contrast black */
        padding: 2rem 1.5rem 1rem;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-actions {
        order: 4;
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f0f0f;
        padding: 0 1.5rem 2.5rem;
        gap: 1.5rem;
        border-bottom: 3px solid var(--orange-main); /* Sharp separation at the VERY bottom */
    }

    .header-actions.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .footer-top, .footer-contact, .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/* Blog Section - Pure Typography Style */
.blog-index-section {
    padding: 8rem 0 4rem;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange-main);
}

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

.blog-date {
    font-size: 0.85rem;
    color: var(--orange-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.blog-card-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: inherit;
    font-weight: 700;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.blog-more-btn {
    margin-top: auto;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Single Blog Post - Typography Focus */
.post-header {
    padding: 12rem 2rem 8rem;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.word-cloud {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 1.5rem;
    opacity: 0.12;
    filter: blur(1px);
}

.word-cloud span {
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
    display: inline-block;
}

.word-cloud span:nth-child(3n) { color: var(--orange-main); opacity: 0.8; }
.word-cloud span:nth-child(5n) { transform: rotate(-5deg); }
.word-cloud span:nth-child(2n) { transform: rotate(3deg); }

.post-meta {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.post-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: white;
    font-weight: 700;
    letter-spacing: -2px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    line-height: 1.9;
    color: var(--text-dark); /* Ensure text is dark and readable */
}

.post-content p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.post-content h2 {
    font-size: 2.2rem;
    color: var(--orange-main);
    margin: 4rem 0 2rem;
    letter-spacing: -1px;
}

.post-content a {
    color: var(--orange-main);
    text-decoration: underline;
    font-weight: 600;
}

/* Light Theme Overrides */
.blog-index-section[style*="background-color: #ffffff"] .blog-card {
    background: #f8f9fa;
    border-color: rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.blog-index-section[style*="background-color: #ffffff"] .blog-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.75rem;
        letter-spacing: -1px;
    }
    .post-header {
        padding: 10rem 1.5rem 5rem;
    }
}
