.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tickets {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.tickets h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.tickets p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.tickets ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.tickets ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.tickets-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    border: none;
}

@media (max-width: 768px) {
    .tickets {
        padding: 20px;
    }

    .tickets h3 {
        font-size: 1.5rem;
    }

    .tickets ul li {
        font-size: 0.9rem;
    }
}
