/*Name: Farheen Naqvi
Date: 09/25/2024
File Name: save the Earth!
*/
/* Hero Section for Learn More */
.learnmore-hero {
    background-image: url("save the earth.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
;
    position: relative;
    text-align: center;
}

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

.learnmore-content {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.additional-info {
    padding: 50px 20px;
    background-color: #f4f4f9;
}

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

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

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

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

.btn-secondary:hover {
    background-color: #0056b3;
}


