/* Section Billets Physiques */
.billets-physiques-section {
    padding: 60px 0;
    background: #f8fafc;
}

.billets-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.billets-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.billets-text h3 {
    font-size: 28px;
    color: #7c3aed;
    margin-bottom: 15px;
}

.billets-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #374151;
}

.billets-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #7c3aed;
}

.billets-info p {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.billets-info i {
    color: #7c3aed;
    width: 20px;
}

@media (max-width: 768px) {
    .billets-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .billets-image img {
        height: 300px;
        max-width: 250px;
        margin: 0 auto;
    }
}