/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff; /* White background like Junior Justices */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Nav */
header {
    background: #2E7D32; /* Green */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

nav a h1 {
    color: #fff;
}

nav a:hover {
    color: #F57C00; /* Orange */
}

nav a:hover h1 {
    color: #fff; /* Logo stays white */
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #F57C00; /* Orange */
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
}

.hero h2 {
    font-size: 5rem;
    color: #333;
}

.hero p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 1.5rem auto;
    font-weight: 400;
}

.hero-image, .card-image {
    width: 100%;
    height: 400px;
    background-color: #ddd; /* Light grey placeholder */
    margin-top: 1rem;
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #F57C00; /* Orange */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e56a00; /* Darker orange */
    transform: scale(1.05);
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 2rem 0;
}

/* Steps, Benefits, Tools */
.steps, .benefits, .tools {
    list-style: none;
    max-width: 900px;
    margin: 2rem auto;
}

.steps li, .benefits li, .tools li {
    font-size: 1.4rem;
    margin: 1rem 0;
    padding: 1rem;
}

/* Impact Stats (Inspired by "What We've Done") */
.impact-stats {
    text-align: center;
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat-card {
    background: #E0F2E9; /* Light green background */
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.stat-card span {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #F57C00; /* Orange */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stat-card h4 {
    font-size: 1.2rem;
    color: #333;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Content Cards (Inspired by "Start a Chapter" and "Attend a Workshop") */
.content-card {
    background: #fff;
    border: 2px solid #2E7D32; /* Green */
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    color: #F57C00; /* Orange */
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product h3 {
    color: #F57C00; /* Orange */
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2E7D32;
    padding: 2rem;
    text-align: center;
}

footer p {
    font-size: 1.2rem;
    color: #fff;
}

.newsletter {
    margin-top: 2rem;
    background: #000;
    padding: 2rem;
}

.newsletter h4 {
    font-size: 2rem;
    color: #F57C00; /* Orange */
    margin-bottom: 1rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter input {
    padding: 0.8rem;
    border: 2px solid #F57C00; /* Orange */
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    width: 70%;
}

.newsletter .btn {
    padding: 0.8rem 2rem;
    background: #000;
    border: 2px solid #F57C00; /* Orange */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .newsletter form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter input {
        width: 100%;
    }
}