/* About Page Specific Styles - Fresh Typing Testimony */

/* Testimony Hero Section */
.testimony-hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimony-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(193, 247, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(193, 247, 68, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.testimony-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.subtitle {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.scroll-indicator {
    color: var(--primary-green);
    font-size: 1rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Typing Story Section */
.typing-story-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: var(--white);
    position: relative;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

/* Shadow Text (Background) */
.shadow-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.1);
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 2rem;
    overflow: hidden;
    z-index: 1;
    font-family: 'Georgia', serif;
    /* Prevent text selection to avoid layout issues */
    user-select: none;
    pointer-events: none;
    /* Ensure consistent text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typing Text (Foreground) */
.typing-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
    font-family: 'Georgia', serif;
    background: linear-gradient(to bottom, transparent 0%, transparent 90%, rgba(255,255,255,0.8) 100%);
    /* Ensure consistent text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Match shadow text exactly */
    box-sizing: border-box;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for WebKit browsers */
.typing-text::-webkit-scrollbar {
    display: none;
}

/* Ensure both texts have identical formatting */
.shadow-text,
.typing-text {
    /* Identical box model */
    box-sizing: border-box;
    /* Identical font settings */
    font-variant-numeric: normal;
    font-feature-settings: normal;
    /* Identical spacing */
    letter-spacing: normal;
    word-spacing: normal;
    /* Prevent any transforms that could cause misalignment */
    transform: none;
    /* Ensure identical positioning */
    margin: 0;
    border: 0;
}

/* Cursor Animation */
.cursor {
    animation: blink 1s infinite;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2em;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Progress Indicator */
.typing-progress {
    position: absolute;
    bottom: 60px;
    left: 2rem;
    right: 2rem;
    z-index: 3;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(193, 247, 68, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #a8e63a);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.progress-stats {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Story Controls */
.story-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.control-btn {
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.control-btn:hover {
    background: var(--primary-green);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 247, 68, 0.3);
}

.control-btn.active {
    background: var(--primary-green);
    color: var(--dark-blue);
}

.btn-text {
    font-weight: 500;
}

/* Journey Stats Section */
.journey-stats {
    padding: 4rem 2rem;
    background: var(--gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* About CTA Section */
.about-cta {
    background: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.about-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .testimony-hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .testimony-hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .typing-story-section {
        padding: 2rem 1rem;
        min-height: 90vh;
    }
    
    .story-container {
        height: 85vh;
    }
    
    .shadow-text,
    .typing-text {
        font-size: 1rem;
        padding: 1rem;
        bottom: 100px;
    }
    
    .typing-progress {
        bottom: 50px;
        left: 1rem;
        right: 1rem;
    }
    
    .story-controls {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        bottom: 5px;
    }
    
    .control-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .journey-stats {
        padding: 3rem 1rem;
    }
    
    .about-cta {
        padding: 4rem 1rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimony-hero {
        padding: 1rem 0.5rem;
    }
    
    .typing-story-section {
        padding: 1rem 0.5rem;
    }
    
    .shadow-text,
    .typing-text {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .control-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .story-controls {
        gap: 0.3rem;
    }
}

/* Typing effect enhancements */
.typing-text.typing::after {
    content: '';
    animation: typingLine 0.5s ease-in-out infinite alternate;
}

@keyframes typingLine {
    0% { border-right: 2px solid var(--primary-green); }
    100% { border-right: 2px solid transparent; }
}

/* Smooth scroll for story section */
.typing-story-section {
    scroll-behavior: smooth;
}

/* Loading state */
.story-container.loading {
    opacity: 0.7;
}

.story-container.loading .control-btn {
    pointer-events: none;
    opacity: 0.5;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .shadow-text {
        color: rgba(0, 0, 0, 0.3);
    }
    
    .typing-text {
        color: #000;
    }
    
    .cursor {
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cursor {
        animation: none;
    }
    
    .scroll-arrow,
    .scroll-indicator {
        animation: none;
    }
    
    .progress-fill {
        transition: none;
    }
    
    .control-btn:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .testimony-hero,
    .journey-stats,
    .about-cta {
        background: white !important;
        color: black !important;
    }
    
    .story-controls,
    .typing-progress,
    .scroll-indicator {
        display: none !important;
    }
    
    .typing-text {
        position: static !important;
        height: auto !important;
        overflow: visible !important;
        background: none !important;
    }
    
    .shadow-text {
        display: none !important;
    }
}/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: var(--gradient);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(193, 247, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(193, 247, 68, 0.05) 0%, transparent 50%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-hero .lead {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-lg);
    border-left: 5px solid var(--primary-green);
}

.story-intro h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-highlight {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1rem;
}

.story-highlight::before,
.story-highlight::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    position: absolute;
    opacity: 0.3;
    font-family: serif;
}

.story-highlight::before {
    top: -0.5rem;
    left: -0.5rem;
}

.story-highlight::after {
    bottom: -1.5rem;
    right: -0.5rem;
}

/* Story Chapters */
.story-chapter {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-chapter:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.story-chapter h3 {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-green);
}

.chapter-content {
    padding: 2rem;
}

.chapter-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.chapter-content p:last-child {
    margin-bottom: 0;
}

/* Bible Quote */
.bible-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    position: relative;
}

.bible-quote::before {
    content: '🙏';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.bible-quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin: 0;
    font-weight: 500;
}

/* Skills Highlight */
.skills-highlight {
    background: var(--gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 2px solid var(--primary-green);
}

.skills-highlight h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.skills-highlight ul {
    list-style: none;
    padding: 0;
}

.skills-highlight li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.skills-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Milestone Stats */
.milestone-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.milestone {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.milestone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 247, 68, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
    display: block;
    position: relative;
    z-index: 1;
}

.milestone-label {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Partnership Highlight */
.partnership-highlight {
    background: linear-gradient(135deg, var(--gray) 0%, #f1f3f4 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
    border: 1px solid var(--light-gray);
}

.partner-info h4 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.partner-info p {
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.partner-info ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.partner-info li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(193, 247, 68, 0.2);
}

.partner-info li:last-child {
    border-bottom: none;
}

.partner-info li::before {
    content: '🤝';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Mission Statement */
.mission-statement {
    background: var(--gradient);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mission-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c1f744" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-pattern)"/></svg>');
}

.mission-statement h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
}

.value-item h5 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Future Vision */
.future-vision {
    background: var(--gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-green);
}

.future-vision h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.future-vision ul {
    list-style: none;
    padding: 0;
}

.future-vision li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.future-vision li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Testimonial Quote Section */
.testimonial-quote {
    background: var(--gradient);
    padding: 4rem 2rem;
    text-align: center;
}

.quote-content blockquote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-content p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-content p::before,
.quote-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    opacity: 0.5;
    font-family: serif;
}

.quote-content p::before {
    top: -1rem;
    left: -2rem;
}

.quote-content p::after {
    bottom: -2rem;
    right: -2rem;
}

.quote-content cite {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    font-style: normal;
}

/* About CTA Section */
.about-cta {
    background: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.about-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .lead {
        font-size: 1.1rem;
    }
    
    .story-section {
        padding: 4rem 1rem;
    }
    
    .story-intro {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .story-intro h2 {
        font-size: 2rem;
    }
    
    .story-highlight {
        font-size: 1.1rem;
    }
    
    .story-chapter {
        margin-bottom: 3rem;
    }
    
    .story-chapter h3 {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
    }
    
    .chapter-content {
        padding: 1.5rem;
    }
    
    .chapter-content p {
        font-size: 1rem;
    }
    
    .bible-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .bible-quote p {
        font-size: 1.1rem;
    }
    
    .skills-highlight,
    .partnership-highlight,
    .future-vision {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .milestone-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .milestone {
        padding: 1.5rem 0.5rem;
    }
    
    .milestone-number {
        font-size: 2rem;
    }
    
    .mission-statement {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .mission-statement p {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        padding: 3rem 1rem;
    }
    
    .quote-content p {
        font-size: 1.2rem;
    }
    
    .quote-content p::before,
    .quote-content p::after {
        font-size: 3rem;
    }
    
    .about-cta {
        padding: 4rem 1rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0.5rem 2rem;
    }
    
    .story-intro {
        padding: 1.5rem;
    }
    
    .story-chapter h3 {
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .chapter-content {
        padding: 1rem;
    }
    
    .bible-quote {
        padding: 1rem;
    }
    
    .milestone-stats {
        grid-template-columns: 1fr;
    }
    
    .milestone-number {
        font-size: 1.8rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
    }
    
    .quote-content p {
        font-size: 1.1rem;
    }
    
    .quote-content p::before,
    .quote-content p::after {
        font-size: 2.5rem;
    }
    
    .quote-content p::before {
        top: -0.5rem;
        left: -1rem;
    }
    
    .quote-content p::after {
        bottom: -1.5rem;
        right: -1rem;
    }
}

/* Animation delays for story chapters */
.story-chapter:nth-child(1) { animation-delay: 0.1s; }
.story-chapter:nth-child(2) { animation-delay: 0.2s; }
.story-chapter:nth-child(3) { animation-delay: 0.3s; }
.story-chapter:nth-child(4) { animation-delay: 0.4s; }
.story-chapter:nth-child(5) { animation-delay: 0.5s; }
.story-chapter:nth-child(6) { animation-delay: 0.6s; }

/* Value items animation delays */
.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scroll padding for story chapters */
.story-chapter {
    scroll-margin-top: 120px;
}

/* Print styles for about page */
@media print {
    .about-hero,
    .testimonial-quote,
    .about-cta {
        background: white !important;
        color: black !important;
    }
    
    .story-chapter h3 {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
    
    .mission-statement {
        background: white !important;
        color: black !important;
        border: 2px solid #ccc !important;
    }
}