#experience_section {
    padding: 100px 0;
}

.experience_content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-section {
    margin-bottom: 3rem;
}

.experience-section h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.7;
}

.experience-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.experience-card .period {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.experience-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.experience-card .company {
    color: var(--secondary-text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.experience-card .location {
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.experience-card .description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .experience_content {
        padding: 0 1rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card h3 {
        font-size: 1.2rem;
    }

    .experience-section h2 {
        font-size: 1.5rem;
    }
}
