:root {
    --dark-bg: #1a2a4c;
    --light-bg: #f4f4f9;
    --primary-accent: #ffb74d; /* A warm, prosperous gold/orange */
    --dark-text: #333333;
    --light-text: #e0e0e0;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Lora', serif;
}

/* --- Basic Reset & Body Styling --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(26, 42, 76, 0.85), rgba(26, 42, 76, 0.95)), url('https://www.transparenttextures.com/patterns/maze-black.png'); /* Subtle maze texture */
    color: var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: var(--light-text);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-accent);
    color: var(--dark-bg);
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- General Content Section Styling --- */
.content-section {
    padding: 80px 20px;
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.punchline {
    margin-top: 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--body-font);
}

/* --- Problem Section: Pain Points --- */
.pain-points {
    list-style-type: none;
    margin-top: 4rem;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.pain-points li {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pain-points h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

/* --- Agitation Section --- */
.dark-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.dark-section h2 {
    color: #ffffff;
}

.dark-section h3 {
    margin-top: 2rem;
    color: var(--primary-accent);
}

.dark-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto;
}

/* --- Solution Section --- */
.light-section {
    background-color: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.solution-box ul {
    list-style-type: none;
}

.solution-box h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}
.solution-box li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.tick { color: #2e7d32; margin-right: 0.5rem; }
.cross { color: #c62828; margin-right: 0.5rem; }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .pain-points, .solution-grid {
        grid-template-columns: 1fr;
    }
    .content-section {
        padding: 60px 20px;
    }
}