/* About Us Pages Styles */

/* Global Font */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Our Story Intro Section */
.about-intro-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
    z-index: 1;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-intro-image:hover img {
    transform: scale(1.05);
}

.about-intro-text {
    padding: 2rem 0;
}

.about-intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 2px;
}

.about-intro-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.85) 0%, rgba(185, 28, 28, 0.75) 100%);
    z-index: 1;
}

.about-hero .container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 4rem 0;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

/* Main Content Section */
.about-content-section {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
    max-width: 100%;
}

.about-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Leadership page uses regular container */
.leadership-page .about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.about-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
}

.about-content-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #374151;
    font-size: 1.0625rem;
}

/* Section with Icons */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #b91c1c;
    transition: all 0.3s ease;
}

.about-section:hover {
    background: #f3f4f6;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-section-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
    transition: all 0.3s ease;
}

.about-section:hover .about-section-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
}

.about-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: -0.3px;
}

.about-section:first-child h2 {
    margin-top: 0;
}

.about-section p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    color: #4b5563;
    line-height: 1.8;
    padding-left: 68px;
}

.about-content-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content-text ul,
.about-content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #4b5563;
}

.about-content-text li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.about-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content-text blockquote {
    border-left: 4px solid #b91c1c;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Mission & Vision Content Section */
.mission-vision-content-section {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Vision Full Card - Occupies Whole Row */
.vision-full-card {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.3);
    position: relative;
    overflow: hidden;
}

.vision-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.vision-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vision-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vision-full-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

.vision-statement {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Mission Cards Section */
.mission-cards-section {
    margin-bottom: 4rem;
}

.mission-cards-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.mission-cards-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 2px;
}

/* Mission Cards Grid - 4 Cards in 2x2 */
.mission-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-card-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
}

.mission-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(185, 28, 28, 0.2);
    border-color: rgba(185, 28, 28, 0.3);
}

.mission-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.mission-card-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b91c1c;
    margin: 0;
    letter-spacing: -0.3px;
    flex: 1;
}

.mission-card-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    color: #b91c1c;
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: none;
    border: 2px solid #b91c1c;
    flex-shrink: 0;
}

.mission-card-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Objectives Section */
.objectives-section {
    margin-top: 4rem;
}

.objectives-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.objectives-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 2px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.objective-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
}

.objective-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(185, 28, 28, 0.2);
    border-color: rgba(185, 28, 28, 0.3);
}

.objective-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
    flex-shrink: 0;
}

.objective-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
}

.objective-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Call to Action */
.about-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    border: 2px solid #fecaca;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
}

.about-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.about-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #b91c1c;
    color: white;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.btn-primary:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        height: 300px;
        order: 1;
    }

    .about-intro-text {
        order: 2;
        padding: 0;
    }

    .about-intro-title {
        font-size: 2.25rem;
    }

    .about-intro-description {
        font-size: 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.125rem;
    }

    .about-hero-content {
        padding: 3rem 1.5rem;
    }

    .about-main-content {
        padding: 2rem 1.5rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-section-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        padding-left: 0;
        margin-top: 1rem;
    }

    .mission-vision-container {
        padding: 0 1.5rem;
    }

    .vision-full-card {
        padding: 3rem 2rem;
    }

    .vision-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .vision-card-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .vision-full-card h2 {
        font-size: 2rem;
    }

    .vision-statement {
        font-size: 1.25rem;
    }

    .mission-cards-title {
        font-size: 2rem;
    }

    .mission-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .objectives-title {
        font-size: 2rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 300px;
    }

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

    .about-content-section {
        padding: 2rem 0;
    }
}

/* What We Believe Page Styles */
.belief-overview-section {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.belief-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.belief-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #fee2e2;
    position: relative;
    overflow: hidden;
}

.belief-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
}

.belief-overview-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 20px;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(185, 28, 28, 0.3);
}

.belief-overview-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.belief-overview-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* Doctrines Section */
.belief-doctrines-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.doctrines-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.doctrines-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 2px;
}

.doctrines-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* Accordion Styles */
.doctrines-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    align-items: start;
    grid-auto-rows: min-content;
}

.doctrine-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: start;
}

.doctrine-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(185, 28, 28, 0.15);
    border-color: rgba(185, 28, 28, 0.3);
}

.doctrine-header {
    width: 100%;
    padding: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.doctrine-header:hover {
    background: #f9fafb;
}

.doctrine-header[aria-expanded="true"] {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border-bottom: 2px solid #fee2e2;
}

.doctrine-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.doctrine-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
    transition: all 0.3s ease;
}

.doctrine-header:hover .doctrine-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
}

.doctrine-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.3px;
}

.doctrine-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b91c1c;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.doctrine-arrow i {
    transition: transform 0.3s ease;
}

.doctrine-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.doctrine-text {
    padding: 0 2rem 2rem 2rem;
    padding-left: calc(2rem + 60px + 1.5rem);
}

.doctrine-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.scripture-references {
    background: #f9fafb;
    border-left: 4px solid #b91c1c;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.scripture-references strong {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
    margin-bottom: 1rem;
}

.scripture-references ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scripture-references li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.scripture-references li::before {
    content: '\f02d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #b91c1c;
    font-size: 0.875rem;
}

/* Responsive for What We Believe */
@media (max-width: 992px) {
    .doctrines-accordion {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .doctrine-item {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .belief-overview-card {
        padding: 2rem 1.5rem;
    }

    .belief-overview-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .belief-overview-card h2 {
        font-size: 2rem;
    }

    .doctrines-title {
        font-size: 2rem;
    }

    .doctrine-header {
        padding: 1.5rem;
    }

    .doctrine-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .doctrine-header h3 {
        font-size: 1.25rem;
    }

    .doctrine-text {
        padding: 0 1.5rem 1.5rem 1.5rem;
        padding-left: calc(1.5rem + 50px + 1rem);
    }
}

@media (max-width: 480px) {
    .doctrine-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .doctrine-text {
        padding-left: 1.5rem;
    }
}

/* ============================================
   Leadership Page Styles
   ============================================ */

/* Leadership Section */
.leadership-section {
    margin-bottom: 5rem;
}

.leadership-section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
}

.leadership-section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #b91c1c, #dc2626);
}

.leadership-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
}

.leadership-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.5px;
}

.leadership-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Team Leaders Grid - 3 per row when more than 3 items (handled by JavaScript) */
#team-leaders-grid {
    /* Default: will be overridden by JavaScript based on count */
}

/* Leader Card */
.leader-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #b91c1c, transparent);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.leader-card:hover::before {
    transform: translateY(0);
}

.leader-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(185, 28, 28, 0.1);
    border-color: rgba(185, 28, 28, 0.3);
}

.leader-card-image-wrapper {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.leader-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.leader-card:hover .leader-card-image {
    transform: scale(1.1);
}

.leader-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #b91c1c;
    font-size: 4rem;
}

.leader-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    z-index: 1;
}

.leader-card:hover .leader-card-overlay {
    opacity: 1;
}

.leader-card-overlay-content {
    width: 100%;
}

.leader-card-bio-preview {
    color: white;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.leader-card-team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    background: rgba(185, 28, 28, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.leader-card-team-link:hover {
    background: #b91c1c;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.leader-card-team-link i {
    transition: transform 0.3s ease;
}

.leader-card-team-link:hover i {
    transform: translateX(4px);
}

.leader-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.leader-card-role {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #b91c1c;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-card-bio {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.leader-card-team-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b91c1c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid #b91c1c;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.leader-card-team-link-inline:hover {
    background: #b91c1c;
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.leader-card-team-link-inline i {
    transition: transform 0.3s ease;
}

.leader-card-team-link-inline:hover i {
    transform: translateX(4px);
}

/* Team Leader Card Specific Styles */
.leader-card-team {
    border-color: rgba(139, 92, 246, 0.2);
}

.leader-card-team::before {
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.leader-card-team:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(139, 92, 246, 0.1);
}

/* Responsive Styles for Leadership */
@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    /* Team leaders grid - maintain 3 per row on large screens */
    #team-leaders-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        margin-bottom: 3rem;
    }

    .leadership-section-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .leadership-section-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .leadership-section-title {
        font-size: 2rem;
    }

    .leadership-section-subtitle {
        font-size: 1rem;
    }

    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .leader-card-image-wrapper {
        height: 280px;
    }

    .leader-card-content {
        padding: 1.5rem;
    }

    .leader-card-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Team leaders grid - 1 per row on mobile */
    #team-leaders-grid {
        grid-template-columns: 1fr;
    }

    .leader-card-image-wrapper {
        height: 250px;
    }

    .leader-card-content {
        padding: 1.25rem;
    }
}

/* ============================================
   History Page Styles
   ============================================ */

/* History Intro */
.history-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.history-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* History Timeline */
.history-timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

/* Timeline Vertical Line */
.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Year */
.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

/* Timeline Content */
.timeline-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(185, 28, 28, 0.15);
    border-color: rgba(185, 28, 28, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    z-index: 10;
}

/* Left Content (on right side) */
.timeline-content-left {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-content-left::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

/* Right Content (on left side) */
.timeline-content-right {
    margin-left: 55%;
    margin-right: auto;
}

.timeline-content-right::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

/* Timeline Image */
.timeline-image-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.timeline-content:hover .timeline-image {
    transform: scale(1.1);
}

/* Timeline Text */
.timeline-text {
    flex: 1;
    padding: 2rem;
    padding-top: 0;
}

.timeline-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.timeline-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* History Page Container */
.history-page .about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Styles for History */
@media (max-width: 992px) {
    .history-timeline::before {
        left: 30px;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        flex-direction: column;
    }

    .timeline-content-left::before,
    .timeline-content-right::before {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline-image-wrapper {
        width: 100%;
        height: 220px;
    }

    .timeline-text {
        padding: 1.5rem;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .history-intro {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .history-intro-text {
        font-size: 1rem;
    }

    .history-timeline {
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .timeline-item {
        margin-bottom: 3rem;
        min-height: auto;
    }

    .timeline-year {
        font-size: 1.125rem;
        padding: 0.625rem 1.25rem;
        min-width: 80px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .timeline-image-wrapper {
        height: 200px;
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .timeline-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .history-timeline::before {
        left: 20px;
    }

    .timeline-year {
        left: 20px;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        min-width: 70px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 1.25rem;
        gap: 1rem;
    }

    .timeline-image-wrapper {
        height: 180px;
    }
}

/* History Callout Section */
.history-callout-section {
    margin: 4rem 0;
    padding: 0 2rem;
    width: 100%;
}

.history-callout-section .belief-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.callout-content {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.3), 0 4px 12px rgba(185, 28, 28, 0.2);
}

.callout-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.callout-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.callout-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.callout-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.callout-btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.callout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.callout-btn:hover::before {
    left: 100%;
}

.callout-btn.btn-primary {
    background: white;
    color: #b91c1c;
    border: 2px solid white;
}

.callout-btn.btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.callout-btn.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.callout-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .callout-content {
        padding: 3rem 2rem;
    }

    .callout-title {
        font-size: 2rem;
    }

    .callout-subtitle {
        font-size: 1.125rem;
    }

    .callout-buttons {
        flex-direction: column;
        width: 100%;
    }

    .callout-btn {
        width: 100%;
        min-width: auto;
    }
}