/* --- CSS Reset & Global Styles --- */
:root {
    --bg-color: #fcf7f2; /* A clean, slightly warm white */
    --primary-text-color: #8C3D0F; /* A very dark, rich brown */
    --secondary-text-color: #5A4A3E; /* A deep, warm gray-brown */
    --accent-color: #D97604; /* A bright, energetic coral orange */
    --button-text-color: #FFFFFF; /* White for maximum contrast */
    
    /* Card colors (for hero card) */
    --hero-card-bg-color: #FFF5E0; /* A vibrant, light yellow-orange */
    --hero-card-border-color: #FFD7A0; /* A warm, golden yellow */
    
    /* UPDATED: About section specific colors for a more accurate look */
    --about-section-bg-color: #FFFFFF; /* Revert to a white background for about section */
    --about-section-border-color: #FFF8F3; /* A very light, subtle warm gray for about section border */
    --expect-card-border-color: #FFD7A0; /* Warmer, golden yellow for expect card border */

    --heading-font: 'Lora', serif;
    --body-font: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    font-family: var(--body-font);
    color: var(--secondary-text-color);
    line-height: 1.6;
}

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

/* --- Header / Navigation --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.header-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-text-color);
    text-decoration: none;
}

.logo-icon {
    width: 60px;
    height: 60px;
    /* fill: var(--accent-color); Removed as it's an image now */
}

.subscribe-btn-header {
    background-color: transparent;
    border: 1px solid var(--expect-card-border-color); /* Use a color from the new palette */
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: var(--accent-color);
    transition: background-color 0.2s;
}
.subscribe-btn-header:hover {
    background-color: var(--expect-card-border-color); /* Use a color from the new palette */
}


/* --- Hero Section --- */
.hero-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--primary-text-color);
    margin-bottom: 24px;
}

.hero-content h1 .accent-text {
    color: var(--accent-color); /* Apply accent color */
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 500px;
}

.subscribe-form {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid var(--expect-card-border-color); /* Use a color from the new palette */
    border-radius: 8px;
    font-size: 1rem;
}
.subscribe-form input:focus {
    outline: 2px solid var(--accent-color);
    border-color: transparent;
}

.subscribe-form button {
    background-color: var(--accent-color);
    color: var(--button-text-color);
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.subscribe-form button:hover {
    background-color: #E66A3F; /* A slightly darker, more intense shade of the new accent color */
}

.social-proof {
    font-size: 0.9rem;
    color: var(--secondary-text-color); /* Use secondary text color for consistency */
    margin-top: 12px;
}

.hero-card {
    flex-basis: 450px;
    flex-shrink: 0;
    background-color: var(--hero-card-bg-color);
    border: 1px solid var(--hero-card-border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 10px 10px 0px 0px var(--hero-card-border-color); /* 3D yellow shadow */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-color);
}

.card-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-text-color);
}

.card-content h3 {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--primary-text-color);
    margin-bottom: 12px;
}

.card-content h3 a {
    color: inherit; /* Inherit color from parent */
    text-decoration: none; /* Remove underline */
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-info .name {
    font-weight: 600;
    color: var(--primary-text-color);
}

.author-info .meta {
    font-size: 0.9rem;
    color: var(--secondary-text-color); /* Use secondary text color for consistency */
}

/* --- About & What to Expect Sections (UPDATED) --- */
.about-section {
    background-color: var(--about-section-bg-color);
    border: 1px solid var(--about-section-border-color);
    border-radius: 16px;
    padding: 40px;
    margin: 80px 0;
    text-align: center;
}

.about-section h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-text-color);
    margin-bottom: 16px;
}

.about-section > p {
    max-width: 800px;
    margin: 0 auto 40px auto; /* Add bottom margin for spacing */
    color: var(--secondary-text-color);
    font-size: 1.1rem; /* Slightly larger font size */
    line-height: 1.8; /* Improved line height for readability */
    text-align: center; /* Center the paragraph text */
}

.what-to-expect {
    margin-top: 40px;
}

.what-to-expect h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-text-color);
    margin-bottom: 32px; /* Increase bottom margin for more separation */
    text-align: center; /* Center the heading text */
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.expect-card {
    background-color: #FFF9ED; /* Distinct yellowish background for expect cards */
    border: 1px solid var(--expect-card-border-color);
    padding: 24px;
    border-radius: 12px;
}

.expect-card .card-icon {
    margin-bottom: 16px;
    background-color: #FFD7A0; /* Orange-ish circle background */
    border-radius: 50%; /* Make it a circle */
    padding: 3px; /* Add some padding around the icon */
}

.expect-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 8px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .subscribe-form {
        justify-content: center;
    }
}

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            .expect-grid {
                grid-template-columns: 1fr;
            }
            .about-section {
                padding: 30px 20px;
            }
            .main-header {
                flex-direction: column;
                gap: 10px; /* Adjust gap for smaller screens */
            }
            .header-buttons {
                flex-direction: column;
                gap: 10px;
            }
        }

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
}
