 .reveal-item {
        opacity: 0;
        transform: translateY(20px); 
        transition: all 0.4s ease-out; 
    }
    
    .reveal-item.first-screen {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }

    .reveal-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .page-header {
        padding: 100px 0 100px;
        text-align: center;
        position: relative;
    }

    .page-header::before {
        content: '';
        display: block;
        width: 1px;
        height: 40px;
        background: #000;
        margin: 0 auto 30px;
    }

    .page-title {
        font-size: 3.8rem;
        letter-spacing: 8px;
        margin-bottom: 15px;
        font-weight: normal;
    }

    .page-subtitle {
        font-size: 0.9rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 4px;
    }

    .founder-section {
        padding: 80px 0 150px;
        position: relative;
    }

    .founder-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .founder-img-wrapper {
        width: 100%;
        max-width: 650px;
        height: auto;
        position: relative;
        z-index: 1;
        box-shadow: 30px 30px 0px rgba(245,245,245,1); 
    }

    .founder-img-wrapper img {
        width: 100%;
        display: block;
        filter: contrast(1.05) saturate(1.05);
        transition: transform 0.8s ease, box-shadow 0.5s ease;
    }

    .founder-img-wrapper:hover img {
        transform: scale(1.02); 
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .founder-info-card {
        background: #fff;
        padding: 60px 50px;
        max-width: 520px;
        border: 1px solid #f0f0f0;
        position: relative;
        z-index: 2;
        margin-top: -100px;
        margin-left: 25%;
        box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    }

    .founder-seal {
        position: absolute;
        top: 40px;
        right: 40px;
        font-family: var(--font-serif);
        border: 1px solid #a83e3e;
        color: #a83e3e;
        padding: 4px 10px;
        font-size: 0.8rem;
        letter-spacing: 2px;
        opacity: 0.8;
    }

    .founder-name {
        font-size: 2.5rem;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .founder-meta {
        font-family: var(--font-serif);
        font-size: 0.95rem;
        color: #888;
        margin-bottom: 35px;
        font-style: italic;
    }


    .journey-section {
        padding: 120px 0;
        background-color: #f9f9f9;
    }

    .section-header-center {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-header-center h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section-intro {
        max-width: 700px;
        margin: 0 auto 60px;
        text-align: center;
        font-size: 1.1rem;
        color: #333;
        font-family: var(--font-serif);
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding-left: 40px;
        border-left: 1px solid #dcdcdc;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 70px;
        padding-left: 50px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -46px;
        top: 8px;
        width: 11px;
        height: 11px;
        background: #fff;
        border: 1px solid #000;
        border-radius: 50%;
        z-index: 2;
        transition: background 0.3s;
    }

    .timeline-item:hover::before {
        background: #000;
    }

    .timeline-year {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: #ccc;
        position: absolute;
        top: -40px;
        left: 50px;
        z-index: 0;
        font-weight: bold;
    }

    .timeline-content h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    
    .features-section {
        padding: 120px 0;
        background: #fff;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid #eee;
    }

    .feature-card {
        padding: 80px 60px;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        transition: all 0.4s ease;
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .feature-card:hover {
        background: #fdfdfd;
        box-shadow: 0 0 40px rgba(0,0,0,0.03);
        z-index: 10;
    }

    .feature-number {
        font-size: 0.8rem;
        font-family: var(--font-sans);
        color: #ccc;
        letter-spacing: 2px;
        margin-bottom: 30px;
        display: block;
    }

    .feature-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 20px;
    }

    .feature-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: #000;
        position: absolute;
        bottom: 0;
        left: 0;
    }

 
    @media (max-width: 991px) {
        .page-title { font-size: 2.5rem; }
        .founder-info-card {
            margin: -50px 20px 0;
            padding: 40px 30px;
            margin-left: auto;
            margin-right: auto;
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
        .feature-card:nth-child(n) {
            border-right: none;
        }
        .feature-card {
            padding: 50px 30px;
        }
    }