/*Name: Farheen Naqvi
Date: 09/25/2024
File Name: save the Earth!
*/
/*CSS Reset */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f9;
}

a {
    text-decoration: none;
    color: white;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.get-involved-hero {
    background-image: url("Environmental-Conservation.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    text-align: center;
}

.get-involved-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay */
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

.btn-primary {
    background-color: #28a745;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #218838;
}

/* How You Can Help Section */
.help-options {
    padding: 50px 20px;
    background-color: #fff;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.help-item {
    background-color: #f4f4f9;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.help-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #28a745;
}

.btn-secondary
}