/* 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;
}

/* Impact Section Styles */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 0;
}

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

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.impact-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.impact-sublabel {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* 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;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .event-calendar {
        width: 100%;
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
}


/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 0.95rem;
}

.data-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.data-table th,
.data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.data-table th {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.data-table tbody tr:hover {
    background-color: #f9fafb;
}

.data-table .total-row {
    background-color: #fef2f2;
    font-weight: 700;
    color: var(--primary-color);
}

.data-table .total-row td {
    border-bottom: none;
}

/* Responsive table */
@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

.ilp-details {
    max-width: 900px;
    margin: 0 auto;
}

.ilp-details summary {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    width: fit-content;
    transition: background-color 0.3s, color 0.3s;
    background: transparent;
}

.ilp-details summary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.ilp-details summary::-webkit-details-marker {
    display: none;
}

.ilp-details summary::before {
    content: '+';
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.ilp-details[open] summary::before {
    content: '−';
}

.ilp-details[open] summary {
    margin-bottom: 0.5rem;
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 1.25rem;
}

.video-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Success Story */
.success-story-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.success-story-image {
    position: relative;
}

.success-story-image .card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.success-story-image .photo-caption {
    background: rgba(196,30,58,0.85);
    color: #fff;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-style: italic;
}

.success-story-content {
    padding: 2rem 2.5rem;
}

.success-story-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.success-story-content p {
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.success-story-content .objectives-list {
    margin: 1.25rem 0 1.25rem 1.5rem;
}

.success-story-content .objectives-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .success-story-content {
        padding: 1.5rem 1.25rem;
    }
    .success-story-content h3 {
        font-size: 1.2rem;
    }
}

/* ILP Timeline Cards */
.ilp-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    position: relative;
    padding-left: 32px;
}

.ilp-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    background: #c41e3a;
    border-radius: 2px;
}

.ilp-phase {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-left: 4px solid #c41e3a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: 12px;
}

.ilp-phase:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.ilp-phase::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #c41e3a;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #c41e3a;
}

/* Phase 1 - Crimson Red */
.ilp-phase:nth-child(1) {
    border-left-color: #dc2626;
}
.ilp-phase:nth-child(1) .phase-number {
    background: #dc2626;
    box-shadow: 0 3px 10px rgba(220,38,38,0.35);
}
.ilp-phase:nth-child(1)::before {
    background: #dc2626;
    box-shadow: 0 0 0 2px #dc2626;
}
.ilp-phase:nth-child(1) .phase-title {
    color: #dc2626;
}
.ilp-phase:nth-child(1) .phase-households {
    color: #dc2626;
}

/* Phase 2 - Orange */
.ilp-phase:nth-child(2) {
    border-left-color: #ea580c;
}
.ilp-phase:nth-child(2) .phase-number {
    background: #ea580c;
    box-shadow: 0 3px 10px rgba(234,88,12,0.35);
}
.ilp-phase:nth-child(2)::before {
    background: #ea580c;
    box-shadow: 0 0 0 2px #ea580c;
}
.ilp-phase:nth-child(2) .phase-title {
    color: #ea580c;
}
.ilp-phase:nth-child(2) .phase-households {
    color: #ea580c;
}

/* Phase 3 - Amber/Gold */
.ilp-phase:nth-child(3) {
    border-left-color: #d97706;
}
.ilp-phase:nth-child(3) .phase-number {
    background: #d97706;
    box-shadow: 0 3px 10px rgba(217,119,6,0.35);
}
.ilp-phase:nth-child(3)::before {
    background: #d97706;
    box-shadow: 0 0 0 2px #d97706;
}
.ilp-phase:nth-child(3) .phase-title {
    color: #d97706;
}
.ilp-phase:nth-child(3) .phase-households {
    color: #d97706;
}

/* Phase 4 - Emerald Green */
.ilp-phase:nth-child(4) {
    border-left-color: #059669;
}
.ilp-phase:nth-child(4) .phase-number {
    background: #059669;
    box-shadow: 0 3px 10px rgba(5,150,105,0.35);
}
.ilp-phase:nth-child(4)::before {
    background: #059669;
    box-shadow: 0 0 0 2px #059669;
}
.ilp-phase:nth-child(4) .phase-title {
    color: #059669;
}
.ilp-phase:nth-child(4) .phase-households {
    color: #059669;
}

/* Phase 5 - Blue */
.ilp-phase:nth-child(5) {
    border-left-color: #2563eb;
}
.ilp-phase:nth-child(5) .phase-number {
    background: #2563eb;
    box-shadow: 0 3px 10px rgba(37,99,235,0.35);
}
.ilp-phase:nth-child(5)::before {
    background: #2563eb;
    box-shadow: 0 0 0 2px #2563eb;
}
.ilp-phase:nth-child(5) .phase-title {
    color: #2563eb;
}
.ilp-phase:nth-child(5) .phase-households {
    color: #2563eb;
}

.phase-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.ilp-phase:hover .phase-number {
    transform: scale(1.1);
}

.phase-number.total {
    background: #1a1a2e;
    box-shadow: 0 3px 10px rgba(26,26,46,0.35);
}

.phase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.phase-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.phase-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.phase-year {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 600;
    background: #f3f4f6;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.phase-parish {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.phase-households {
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-top: 0.3rem;
}

.phase-households small {
    font-weight: 500;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Total Phase - Dark Red with Gold */
.total-phase {
    background: #7f1d1d;
    border-left-color: #ffd700 !important;
    box-shadow: 0 6px 20px rgba(127,29,29,0.3);
}

.total-phase:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(127,29,29,0.4);
}

.total-phase .phase-title {
    color: #fff;
    font-weight: 800;
}

.total-phase .phase-year {
    color: #ffd700;
    background: rgba(255,215,0,0.15);
}

.total-phase .phase-parish {
    color: rgba(255,255,255,0.85);
}

.total-phase .phase-households {
    color: #ffd700;
    font-size: 1.6rem;
}

.total-phase .phase-households small {
    color: rgba(255,255,255,0.7);
}

.total-phase .phase-number {
    background: #ffd700;
    color: #7f1d1d;
    box-shadow: 0 3px 10px rgba(255,215,0,0.4);
}

.total-phase::before {
    background: #ffd700 !important;
    box-shadow: 0 0 0 2px #ffd700 !important;
}

@media (max-width: 768px) {
    .ilp-timeline {
        padding-left: 24px;
    }
    .ilp-phase {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
        margin-left: 8px;
    }
    .ilp-phase::before {
        left: -8px;
        width: 8px;
        height: 8px;
    }
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .phase-title {
        font-size: 0.95rem;
    }
    .phase-households {
        font-size: 1.2rem;
    }
    .phase-parish {
        font-size: 0.85rem;
    }
}
