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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

header {
    background-color: #2c5282;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav a:hover {
    color: #63b3ed;
}

nav .dropdown {
    position: relative;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c5282;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    padding: 10px 0;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}

nav .dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

nav .dropdown-content a:hover {
    background-color: #3c6a9e;
}

.donate-btn {
    background-color: #e53e3e;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 5px;
    font-weight: 600 !important;
    transition: background-color 0.3s !important;
}

.donate-btn:hover {
    background-color: #c53030 !important;
    color: white !important;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

.hero-image {
    margin-top: 40px;
}

.hero-image img {
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mission {
    background-color: #f7fafc;
    padding: 60px 0;
    text-align: center;
}

.mission h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.3rem;
    font-style: italic;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.quick-links {
    padding: 60px 0;
}

.quick-links h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 40px;
}

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

.link-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.link-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.link-card h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 15px;
}

.link-card p {
    color: #718096;
    margin-bottom: 20px;
}

.link-card a {
    display: inline-block;
    background-color: #2c5282;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.link-card a:hover {
    background-color: #3c6a9e;
}

.about-section {
    padding: 80px 0;
}

.about-section .container {
    max-width: 900px;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 30px;
    text-align: center;
}

.about-section h2 {
    font-size: 1.8rem;
    color: #2c5282;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-section li {
    margin-bottom: 10px;
    list-style: disc;
}

.content-section {
    padding: 60px 0;
}

.content-section h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #2c5282;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    list-style: disc;
}

.featured-image {
    margin: 30px 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quote-section {
    background-color: #f7fafc;
    padding: 60px 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-section cite {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: normal;
    color: #2c5282;
    font-weight: 600;
}

.partners {
    padding: 60px 0;
    background-color: #f7fafc;
}

.partners h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.partner-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.btn {
    display: inline-block;
    background-color: #2c5282;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #3c6a9e;
    color: white;
}

.btn-secondary {
    background-color: #48bb78;
}

.btn-secondary:hover {
    background-color: #38a169;
}

.btn-primary {
    background-color: #e53e3e;
}

.btn-primary:hover {
    background-color: #c53030;
}

.resources-section {
    padding: 60px 0;
}

.resources-section h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c5282;
}

.resources-section h3 {
    font-size: 1.5rem;
    color: #2c5282;
    margin-top: 40px;
    margin-bottom: 20px;
}

.resources-section ul {
    margin: 20px 0;
}

.resources-section li {
    margin-bottom: 12px;
}

.resources-section li a {
    color: #2c5282;
    font-weight: 500;
}

.resources-section li a:hover {
    color: #3c6a9e;
    text-decoration: underline;
}

.contact-info {
    padding: 60px 0;
}

.contact-info h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 30px;
}

.contact-details {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details a {
    color: #2c5282;
    font-weight: 500;
}

.contact-details a:hover {
    color: #3c6a9e;
}

.form-section {
    background-color: #f7fafc;
    padding: 60px 0;
}

.form-section h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 30px;
}

.form-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.donate-section {
    padding: 60px 0;
}

.donate-section h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 30px;
}

.donate-section h2 {
    font-size: 1.8rem;
    color: #2c5282;
    margin-top: 40px;
    margin-bottom: 20px;
}

.donate-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.wish-list {
    margin: 30px 0;
}

.wish-list a {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.wish-list a:hover {
    background-color: #38a169;
}

.items-list {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.items-list ul {
    columns: 2;
    column-gap: 40px;
}

.items-list li {
    margin-bottom: 10px;
    list-style: disc;
    padding-left: 10px;
}

footer {
    background-color: #1a365d;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 50px;
    opacity: 0.9;
}

.footer-info {
    text-align: center;
    flex: 1;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2c5282;
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .items-list ul {
        columns: 1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
