.intro {
    padding: 25px;
    text-align: center;
}

.experiences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.experiences:last-child {
    margin-bottom: 0;
}

.experience {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.experience .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.experience .actions {
    text-align: center;
}
