#about {
    max-width: 1600px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 5vw;
    align-items: stretch;
}

.textbox {
    flex: 1;
    max-width: 1000px;
    padding: 60px 80px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.textbox h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
}

.textbox p {
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.textbox strong {
    color: #fff;
}

.important-note {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), rgba(255, 255, 255, 0.02));
    border-left: 4px solid #a855f7;
    border-radius: 4px 12px 12px 4px;
    margin: 12px 0 !important;
}

.fotobox {
    display: none;
}

.fotobox::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    #about {
        flex-direction: column;
    }
    .fotobox {
        min-height: 380px;
    }
    .textbox {
        padding: 30px;
    }
}

.timeline {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 5vw;
}

.timeline h2 {
    text-align: left;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.timeline-container {
    position: relative;
    padding-left: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 17px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -29px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 40px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.timeline-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.timeline-content p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.disclaim {
    margin-top: 40px;
    text-align: left;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    font-weight: 400;
    padding-left: 40px;
}
