/* About page container */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Profile section styles */
.profile-section {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    position: relative;
}

.profile-section::before {
    content: 'IL';
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

/* About text styles */
.about-text {
    margin: 40px 0;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* The h3 color is already set by .content-section h3 */

/* Content section styles */
.content-section {
    margin: 40px 0;
    text-align: left;
    padding: 20px;
    background: var(--background-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-section ul {
    list-style-type: none;
    padding: 0;
}

.content-section li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Timeline styles */
.timeline {
    margin: 60px 0 20px;
    position: relative;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    margin: 40px 0;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--background-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
}

.timeline-item:nth-child(even)::before {
    left: -6px;
}

.timeline-date {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Timeline section specific styles */
.timeline-section {
    /* Add any specific styles for the timeline section if needed */
}

/* Ensure timeline content titles have the text color (blue-grey) */
.timeline-content h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}
