
:root {
    --teal: #0EA5A4;
    --soft-mint: #F0FDF4;
    --light-gray: #F3F4F6;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
}

/* Header Placeholder */
.header-placeholder {
    height: 80px; /* Same as header height */
}

/* Hero Section */
.blog-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.25rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Blog Article */
.blog-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.blog-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.blog-section:nth-child(even) .blog-section-image {
    order: -1;
}

.blog-section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--teal);
}

.blog-section-text p,
.blog-section-text ul,
.blog-section-text ol {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.blog-section-text ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.blog-section-text ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.blog-section-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Visual Hierarchy Elements */
.pull-quote {
    border-left: 4px solid var(--teal);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.did-you-know {
    background-color: var(--soft-mint);
    border: 1px solid var(--teal);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.did-you-know h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.did-you-know p {
    font-size: 1rem;
    color: var(--dark-gray);
}

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

.tip-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.tip-card .icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

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

    .blog-section:nth-child(even) .blog-section-image {
        order: 0;
    }

    .blog-section-text h2 {
        font-size: 2rem;
    }
}
