@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    background-color: #84dcc6; /*#F29DA4;*/
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Mission Statement Section */
h1 {
    font-size: 2.5em;
    color: #4a4a4a;
}

p.lead {
    font-size: 1.2em;
    color: black;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    padding: 20px;
}

/* Carousel Section */
.carousel-inner {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item h5 {
    font-size: 1.5em;
    color: #2c3e50;
}

.carousel-item p {
    color: #555;
}

/* Contact Section */
h2 {
    color: #4a4a4a;
    font-size: 2em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
}

/* Buttons */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}

    .carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
        background-color: black;
    }


/* About Us / Mission Statement Page */
.mission-title {
    font-size: 2.5em;
    color: #4a4a4a;
    font-weight: bold;
    margin-top: 20px;
}

.mission-text {
    font-size: 1.4em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}