    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .about-hero {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .profile-section {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .profile-image {
        flex: 1;
        min-width: 300px;
        background-color: #ee2222;
        border-radius: 20px;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .profile-info {
        flex: 2;
        min-width: 300px;
    }
    
    .mission-values {
        background-color: #5f3636;
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 3rem;
    }
    
    .experience-section, .education-section {
        margin-bottom: 3rem;
    }
    
    .experience-item, .education-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #770707;
    }
    
    .experience-item:last-child, .education-item:last-child {
        border-bottom: none;
    }
    
    .experience-item h3, .education-item h3 {
        margin-bottom: 0.5rem;
    }
    
    .experience-meta, .education-meta {
        color: #666;
        font-style: italic;
        margin-bottom: 1rem;
    }
    
    .terminal-container {
        margin-bottom: 3rem;
    }
