.about-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    background: 
        linear-gradient(rgba(43, 32, 26, 0.9), rgba(43, 32, 26, 0.9)),
        url('images/logo-new.jpg'); /* Subtle texture if needed, or just plain */
    background-size: cover;
}

.about-title {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.about-subtitle {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-style: normal;
    text-transform: uppercase;
    border-bottom: 1px dashed var(--border-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.team-photo {
    width: 100%;
    max-width: 700px;
    height: auto;
    border: 4px solid var(--border-color);
    margin-bottom: 3rem;
    filter: contrast(1.1);
}

.about-content {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    background-color: rgba(230, 215, 185, 0.1);
    padding-left: 1rem;
}

.about-content ul {
    list-style-type: square;
    padding-left: 2rem;
}

.about-content li {
    background: none;
    padding-left: 0;
    margin-bottom: 1rem;
}