body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header h1 {
    margin: 0;
    font-size: 2rem;
}

.nav {
    background-color: #34495e;
    padding: 0.5rem 0;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav ul li {
    margin-right: 20px;
    margin-bottom: 5px;
    position: relative;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
}

.nav ul li a:hover {
    background-color: #1abc9c;
    border-radius: 3px;
}

.nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #34495e;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
}

.nav ul li:hover .dropdown {
    display: block;
}

.nav ul li .dropdown li {
    margin: 0;
    display: block;
}

.nav ul li .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: white;
    border-radius: 0;
}

.nav ul li .dropdown li a:hover {
    background-color: #1abc9c;
}

.nav .donate-btn {
    background-color: #e74c3c;
    padding: 5px 15px;
    border-radius: 3px;
}

.nav .donate-btn:hover {
    background-color: #c0392b;
}

.breadcrumb {
    background-color: #ecf0f1;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
    margin-right: 10px;
}

.breadcrumb a:hover {
    color: #1abc9c;
}

.content {
    padding: 40px 0;
}

.section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h1 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 2.2rem;
}

.section h2 {
    color: #1abc9c;
    margin-top: 30px;
    font-size: 1.8rem;
}

.section h3 {
    color: #34495e;
    margin-top: 25px;
    font-size: 1.4rem;
}

.section p {
    line-height: 1.6;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c0392b;
}

.hero {
    background: linear-gradient(rgba(26, 188, 156, 0.8), rgba(22, 160, 133, 0.8)), url('images/slide_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.campaign-card {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #1abc9c;
    overflow: hidden;
}

.campaign-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.page-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 30px;
}

.full-width-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin: 20px 0;
}

.campaign-card h3 {
    color: #2c3e50;
    margin-top: 0;
}

.campaign-card a {
    color: #1abc9c;
    text-decoration: none;
}

.news-item {
    background: #ecf0f1;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.news-item h3 {
    color: #2c3e50;
    margin-top: 0;
}

.footer {
    background-color: #1a252f;
    color: white;
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #1abc9c;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1abc9c;
}

.contact-info p {
    margin: 10px 0;
    color: #bdc3c7;
}

.contact-info p strong {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
    }
    
    .nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
    }
}
