/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --primary-dark: #8b0000;
    --secondary-color: #f4a460;
    --accent-color: #ffd700;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-bg: #1a1a2e;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-logo .tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.btn-donate {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.btn-donate:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #d4a84a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.alt-bg {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.vision-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-section, .values-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.vision-section h3, .values-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Director Section */
.director-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.director-message {
    max-width: 900px;
    margin: 0 auto;
}

.director-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.director-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.bible-quote {
    font-style: italic;
    font-size: 1.25rem;
    margin: 2rem 0 0.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.quote-label {
    font-weight: 600;
    color: var(--accent-color);
}

/* Thematic Areas */
.thematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.thematic-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thematic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.thematic-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thematic-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.thematic-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.objectives {
    list-style: none;
    margin-top: 1rem;
}

.objectives li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.objectives li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateX(5px);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.4;
}

.event-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.challenge-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
}

.challenge-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.challenge-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Donation Section */
.donation-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.donation-content > p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.125rem;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.donation-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.donation-option h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.donation-option p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3, .contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-dark);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--light-bg);
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

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

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

    .vision-values {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .donation-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid,
    .thematic-grid,
    .programs-grid,
    .events-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.125rem;
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.main-content {
    min-width: 0;
}

.main-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.main-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.main-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.vision-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 1.5rem;
    background-color: var(--light-bg);
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
    min-width: 0;
}

.sidebar-menu {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-menu h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.sidebar-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 0.5rem;
}

.sidebar-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Groups Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.group-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.group-item:hover {
    transform: translateY(-5px);
}

.group-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.group-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.group-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Program Detail */
.program-detail {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.program-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.program-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Objectives List */
.objectives-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.objectives-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.objectives-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.objectives-list ol {
    list-style: decimal;
    padding-left: 2rem;
}

.objectives-list ol li {
    padding-left: 0;
}

.objectives-list ol li:before {
    content: none;
}

/* SDG List */
.sdg-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.sdg-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

.sdg-list li:before {
    content: "🎯";
    position: absolute;
    left: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.team-member {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-placeholder {
    background-color: var(--light-bg);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-placeholder span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Donation Options */
.donation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.donation-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.donation-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-option-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.donation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-option-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.donation-option-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.donation-features {
    list-style: none;
    text-align: left;
}

.donation-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.donation-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Donation Form */
.donation-form-section {
    max-width: 600px;
    margin: 0 auto 3rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.donation-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount-btn {
    background-color: var(--light-bg);
    border: 2px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.amount-btn:hover,
.amount-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.donation-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
}

.donation-form label input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Other Ways */
.donation-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.other-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.way-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.way-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.way-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Hours */
.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Map Placeholder */
.map-placeholder {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: var(--text-light);
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateX(5px);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-date,
.blog-category {
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.blog-post p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.pagination-link {
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pagination-link:hover,
.pagination-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.categories-list a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Recent Posts */
.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 0.75rem;
}

.recent-posts a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.recent-posts a:hover {
    color: var(--primary-color);
}

/* Upcoming Events */
.upcoming-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.upcoming-event {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
}

.event-calendar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.event-month {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.event-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.event-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.event-location {
    font-size: 0.9rem;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.event-link:hover {
    text-decoration: underline;
}

/* Responsive for Content Wrapper */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .groups-grid,
    .team-grid,
    .benefits-grid,
    .donation-options,
    .other-ways,
    .upcoming-events {
        grid-template-columns: 1fr;
    }
    
    .upcoming-event {
        flex-direction: column;
    }
    
    .event-calendar {
        width: 100%;
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
}

/* Button Link */
.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}
