body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

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

header {
    background: linear-gradient to right, #FF0000, #FFFFFF);
    color: #fff;
    padding: 1rem 0;
    border-bottom: #e8491d 3px solid;
}

header .logo {
    float: left;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

header h1 {
    margin: 0;
    color: #fff;
}

header nav {
    float: right;
    margin-top: 15px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #e8491d;
    font-weight: bold;
}

.hero {
    min-height: 400px;
    background: #333 url('./images/hero_charity.png') no-repeat center center/cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

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

.hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    color: #fff;
    background: #e8491d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #333;
}

.mission-vision, .upcoming-events {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 20px;
}

.mission-vision h3, .upcoming-events h3 {
    color: #e8491d;
    text-align: center;
    margin-bottom: 20px;
}

.upcoming-events ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.upcoming-events li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

footer p {
    margin: 0;
}

footer a {
    color: #e8491d;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.option-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 30%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.option-card h4 {
    color: #e8491d;
    margin-bottom: 15px;
}

.option-card .cta-button {
    margin-top: 15px;
}

.main-content {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 20px;
}

.main-content h2 {
    color: #e8491d;
    text-align: center;
    margin-bottom: 20px;
}

.main-content h3 {
    color: #e8491d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.main-content ul,
.main-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.main-content ul li,
.main-content ol li {
    margin-bottom: 5px;
}

.news-item, .event-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.news-item h3, .event-item h3 {
    color: #333;
    margin-top: 0;
}

.news-date, .event-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

.cta-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 15px;
}
