/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #34495e;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 15px;
    display: flex;
}

nav ul li a:hover {
    background-color: #1abc9c;
    border-radius: 5px;
}

.hero {
    background-image: url('https://cdn.pixabay.com/photo/2020/06/14/15/55/landscape-5298395_1280.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.5em;
    margin: 0 0 30px;
}

.hero button {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #16a085;
}

section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.initiatives {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.initiative {
    background-color: #ecf0f1;
    padding: 20px;
    margin: 10px;
    width: 45%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.initiative h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial {
    background-color: #ecf0f1;
    padding: 20px;
    margin: 10px;
    width: 60%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-style: italic;
}

.testimonial p {
    font-size: 1.2em;
}

.faq h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
}

footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1em;
}

a {
    size: 5rpm;
    color: #1abc9c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
