* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
    height: 80vh;
}

.hero-image {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.hero-text p {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

section {
    padding: 40px 0;
}

/* Success and error message styling */
.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

#formResult {
    margin-top: 20px;
}
/* Quotes Section */
#quotes {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

#quotes h2 {
    font-size: 2em;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.quote-card {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-block;
    width: 80%;
}

.quote-card p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.quote-card p:last-child {
    text-align: right; /* This ensures author names are aligned to the right */
    font-style: italic; /* Optional: Italicize the author name */
    margin-top: 10px; /* Add a margin to separate from the quote text */
}

/* Supported People Section */
#supported-people {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

#supported-people h2 {
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 20px;
}

#supported-people p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.supported-list {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

.supported-list li {
    font-size: 1.2em;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.supported-count {
    margin-top: 30px;
}

.supported-count p {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
}


/**/
.donate-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #0070ba;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: #005ea6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #ff6b6b;
    text-align: center;
}

#mission, #about, #future-vision p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

#startups .startup {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: transform 0.2s ease-in-out;
}

#startups .startup:hover {
    transform: scale(1.05);
}

#cta {
    background: #ff6b6b;
    margin-top: 0;
    color: #fff;
    text-align: center;
    padding: 60px;
}

#cta a {
    background-color: #fff;
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

#cta a:hover {
    background-color: #f4f4f4;
}

/* Contact Us for Help Section */
#contact-help {
    background: #f0f0f0;
    padding: 60px 0;
}

#contact-help p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form input[type="submit"] {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}

form input[type="submit"]:hover {
    background-color: #ff3b3b;
}

footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
