/* Experience Section Styles */
.experience {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.experience h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
    position: relative;
}

.experience h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #3498db;
    margin: 15px auto;
}

.experience-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #3498db;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.duration {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.experience-details {
    list-style: none;
    padding: 0;
}

.experience-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #505050;
    line-height: 1.6;
}

.experience-details li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

@media (min-width: 768px) {
    .experience-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}