.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-decoration: none;
    background: var(--accent-color)22;
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.13s, color 0.13s;
    font-size: 1em;
    font-weight: 400;
    font-family: "Roboto Condensed", sans-serif;
}

.back-link:hover {
    background: var(--accent-color);
    color: #fff;
}

.about-section {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 1.2em;
    padding: 30px;
    border: 1px solid #eee;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 200;
    font-size: 1.2em;
    line-height: 1.2;
}

.about-section h2 {
    color: var(--accent-color);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 2.5em;
    margin: 0px 0px 10px 0px;
    font-weight: 200;
}

.experience-item {
    margin-bottom: 30px;
    margin-top: 25px;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

.experience-title {
    color: #333;
    font-weight: 400;
    font-size: 1.5em;
    text-transform: uppercase;
}

.experience-company {
    color: #555;
    font-style: italic;
    margin-bottom: 5px;
}

.experience-period {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.experience-description {
    color: #333;
    margin-bottom: 10px;
}

.experience-achievements {
    list-style: none;
    padding: 0;
}

.experience-achievements li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.experience-achievements li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}