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

/* Body and Main Color Theme */
body {
    background-color: rgb(224, 247, 250);
    color: rgb(0, 61, 52);
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: rgb(15, 87, 54);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header .logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

header .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

header h1 {
    font-size: 2.5rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgb(15, 87, 54), rgb(0, 61, 52));
    color: white;
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 2s ease-out;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: slideUp 1.5s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero button {
    background-color: rgb(224, 247, 250);
    color: rgb(0, 61, 52);
    padding: 12px 25px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.hero button:hover {
    background-color: rgb(15, 87, 54);
    color: white;
}

/* Problem Statement Section */
/* Problem Section */
#problem {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#problem h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#problem p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.problem-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.problem-image {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.problem-image:hover {
    transform: scale(1.05);
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .problem-image {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .problem-image {
        width: 90%;
    }
}


#solution {
    padding: 60px 20px;
    text-align: center;
    background-color: rgb(224, 247, 250);
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#solution h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#solution p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
#solution img{
    width: 50%;
    height: 50%;
    margin: 20px;
    border-radius: 10px;
}

/* About Us Section */
#about-us {
    padding: 60px 20px;
    background-color: white;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about-us h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.team {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background-color: rgb(224, 247, 250);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
}

/* Target Market Section */
#target-market {
    padding: 60px 20px;
    background-color: rgb(0, 61, 52);
    color: white;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

#target-market ul {
    list-style: none;
    font-size: 1.1rem;
}

#target-market li {
    margin: 10px 0;
}

/* Financial Overview Section */
#financials {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

#financials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#financials p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#financials button {
    background-color: rgb(15, 87, 54);
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#financials button:hover {
    background-color: rgb(0, 61, 52);
}

/* Market Expansion Section */
#market-expansion {
    padding: 60px 20px;
    background-color: rgb(224, 247, 250);
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

/* Community Impact Section */
#community-impact {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

/* Call-to-Action Section */
#cta {
    padding: 60px 20px;
    background-color: rgb(15, 87, 54);
    text-align: center;
    color: white;
    margin-top: 20px;
    border-radius: 10px;
}

#cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#cta button {
    background-color: rgb(224, 247, 250);
    color: rgb(0, 61, 52);
    padding: 12px 25px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#cta button:hover {
    background-color: rgb(15, 87, 54);
    color: white;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: rgb(224, 247, 250);
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

#contact label {
    font-size: 1.1rem;
}

#contact input {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    border: 2px solid rgb(0, 61, 52);
    border-radius: 5px;
}

#contact button {
    background-color: rgb(0, 61, 52);
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#contact button:hover {
    background-color: rgb(15, 87, 54);
}

/* Footer */
footer {
    background-color: rgb(0, 61, 52);
    color: white;
    text-align: center;
    padding: 20px;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
