:root {
    --primary-green: #1B4D3E;
    /* Dark Forest Green */
    --accent-green: #4CAF50;
    /* Brighter Green for buttons/icons */
    --bg-light: #E8F5E9;
    /* Very light green background */
    --text-dark: #1A1A1A;
    --text-grey: #4A4A4A;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #448055;
    color: var(--white);
    border: 2px solid #448055;
}

.btn-primary:hover {
    background-color: #366644;
    border-color: #366644;
}

.btn-secondary {
    background-color: transparent;
    color: #448055;
    border: 2px solid #448055;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: transparent;
    border: 1px solid var(--text-grey);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 16px;
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-green);
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 24px;
    font-weight: 500;
}

.btn-primary-outline {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--white);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-grey);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-grey);
    margin-bottom: 48px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.left-align {
    text-align: left;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Value Prop Section */
.value-prop-section {
    background-color: var(--bg-light);
    /* Slide 2 looks light green */
}

.value-card {
    background: transparent;
    padding: 24px;
    border-radius: 12px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #448055;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: white;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

/* Capabilities Section */
.capabilities-section {
    background-color: var(--white);
    /* White background for contrast */
}

.cap-card {
    border: 1px solid #eee;
    padding: 32px;
    border-radius: 8px;
    transition: transform 0.2s;
    background-color: var(--bg-light);
    /* Cards are slightly tinted as per slide 3 */
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-icon-top {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.cap-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.cap-card ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-grey);
}

.cap-card li {
    margin-bottom: 8px;
}

/* Product Spotlight */
.spotlight-section {
    background-color: #C3E6CB;
    /* Light green background from Slide 4 */
    padding: 100px 0;
}

.spotlight-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    /* Simulate clear bg */
}

.spotlight-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    /* Removed bullets, maybe use custom ones if needed */
    margin: 24px 0;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-green);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.impact-text {
    font-weight: 500;
    color: var(--primary-green);
    margin-top: 24px;
}

/* Mission Section */
.mission-section {
    background-color: #D4EDDA;
    /* Slightly different green or same as prev */
    padding: 100px 0;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-content p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* How It Works (Process) */
.how-it-works-section {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    gap: 24px;
}

.step {
    flex: 1;
    text-align: center;
    background-color: var(--bg-light);
    padding: 32px 24px;
    border-radius: 8px;
    min-height: 250px;
}

.step-icon {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 12px;
}

.step-arrow {
    font-size: 2rem;
    color: var(--bg-light);
    /* Hide on mobile mostly, or make subtle */
    color: #ccc;
    align-self: center;
}

/* Target Audience */
.target-audience-section {
    background-color: var(--white);
}

.audience-image img {
    width: 100%;
    border-radius: 12px;
}

.audience-content .intro-text {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.audience-list {
    list-style: none;
    /* Custom bullets */
}

.audience-list li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.audience-list li::before {
    content: "•";
    color: var(--primary-green);
    font-size: 2rem;
    position: absolute;
    left: -5px;
    top: -10px;
}

.audience-list h4 {
    color: var(--primary-green);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-section {
    background-color: #448055;
    /* Dark Green bg like Slide 8 */
    color: var(--white);
}

.why-choose-section .section-title {
    color: var(--white);
}

.benefit-item {
    margin-bottom: 24px;
}

.benefit-icon {
    margin-bottom: 16px;
    color: var(--white);
    /* Could be an icon color */
}

.benefit-item h3 {
    color: var(--white);
    /* Override default green */
    margin-bottom: 12px;
}

/* Social Proof */
.social-proof-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-box {
    background-color: #C3E6CB;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    margin-bottom: 48px;
    text-align: left;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.7;
}

.logo-box {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Final CTA */
.final-cta-section {
    background-color: var(--white);
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 24px 0;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* Footer */
.site-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-container {
        flex-direction: column-reverse;
        /* Image on top on mobile? or bottom. Usually image top is better but let's stick to standard flow */
    }

    .hero-image {
        width: 100%;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    width: 85%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-grey);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-grey);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.full-width {
    width: 100%;
    margin-top: 16px;
    cursor: pointer;
}

/* Fake Calendar Preview */
.calendar-preview {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.cal-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-grid span {
    padding: 4px;
    border-radius: 4px;
}

.cal-grid .muted {
    color: #ccc;
}

.cal-grid .active-date {
    background-color: var(--primary-green);
    color: white;
    font-weight: bold;
}

/* Explore Page Styles */
.explore-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.explore-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.explore-gallery {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.explore-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Deep Dive Sections */
.dd-section {
    padding: 80px 0;
}

.dd-section-green {
    background-color: #448055;
    color: white;
}

.dd-section-green h2,
.dd-section-green h3,
.dd-section-green p {
    color: white;
}

.dd-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    max-width: 900px;
}

.dd-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.dd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.money-stat-box {
    text-align: center;
}

.money-stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.dd-box-light {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    margin: 24px 0;
}

.historic-cards {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.h-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.h-card-icon {
    font-size: 2rem;
    color: var(--text-grey);
}

.candidate-comparison {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.candidate-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
}

.volunteer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.v-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.v-card-icon {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.chart-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dd-alert-box {
    background-color: #D4EDDA;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    color: var(--primary-green);
    font-weight: 500;
}

/* Candidate Image Cropping */
.candidate-img-container {
    height: 250px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f0f0f0;
    position: relative;
}

.candidate-img-crop {
    width: 100%;
    height: 100%;
    background-image: url('assets/explore_candidate.jpg');
    background-size: 200%;
    /* Resize so the slide is roughly 2x the container width, assuming 2 columns */
    background-repeat: no-repeat;
}

.c-crop-left {
    background-position: 5% 45%;
    /* Focus on the left graphic */
}

.c-crop-right {
    background-position: 95% 45%;
    /* Focus on the right graphic */
}

/* Responsive Deep Dive */
@media (max-width: 768px) {

    .dd-grid-3,
    .dd-grid-2,
    .dd-grid-2.gap-32,
    .candidate-comparison,
    .historic-cards {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .dd-title {
        font-size: 2rem;
    }

    .money-stat-box {
        margin-bottom: 24px;
    }

    .candidate-img-container {
        height: 200px;
    }

    .volunteer-cards-grid {
        grid-template-columns: 1fr;
    }
}