.page-container { flex-grow: 1; }

    .content-section {
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
        width: 100%;
    }

    .content-section h2 {
        font-size: 3rem;
        font-weight: 400;
        color: var(--primary-color);
        text-align: center;
    }

    .timeline-revamped {
        position: relative;
        padding: 2rem 0;
    }

    .timeline-revamped::before {
        content: '';
        position: absolute;
        top: 0;
        left: 18px;
        width: 4px;
        height: 100%;
        background: #e9ecef;
        border-radius: 2px;
    }

    .timeline-item-revamped {
        position: relative;
        margin-bottom: 50px;
        padding-left: 50px;
    }

    .timeline-item-revamped::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-color);
        border: 4px solid var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        z-index: 1;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-users'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .timeline-content-revamped {
        background-color: var(--surface-color);
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .timeline-content-revamped:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    }

    .timeline-generation-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f1f1f1;
    }

    .personnel-grid-revamped {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        align-items: start;
    }

    .personnel-member-revamped {
        text-align: center;
        transition: transform 0.3s ease;
    }
    .personnel-member-revamped:hover {
        transform: scale(1.05);
    }

    .personnel-member-revamped img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 4px solid #e9ecef;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: border-color 0.3s ease;
    }
    .personnel-member-revamped:hover img {
        border-color: var(--primary-color);
    }

    .personnel-member-revamped h4 {
        font-weight: 600;
        font-size: 1rem;
        margin: 0 0 0.25rem 0;
        color: var(--text-color);
    }

    .personnel-member-revamped p {
        font-size: 0.85rem;
        opacity: 0.7;
        margin: 0;
    }

    @media (min-width: 480px) {
        .personnel-grid-revamped {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 768px) {
        .timeline-revamped::before {
            left: 50%;
            transform: translateX(-50%);
        }
        .timeline-item-revamped {
            width: 50%;
            padding-left: 0;
            margin-bottom: 0;
        }
        .timeline-item-revamped:nth-child(even) {
            left: 50%;
            padding-left: 50px;
        }
        .timeline-item-revamped:nth-child(odd) {
            padding-right: 50px;
            text-align: right;
        }
        .timeline-item-revamped:nth-child(even)::before {
            left: -22px;
        }
        .timeline-item-revamped:nth-child(odd)::before {
            left: auto;
            right: -22px;
        }
        .timeline-item-revamped:nth-child(odd) .timeline-content-revamped {
            text-align: left;
        }
        
        .personnel-grid-revamped {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }
    }