.ticket-section h2 {
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    color: #0088A3;
}

#ticket-info {
    background-color: #fdf8f0;
    padding: 50px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    animation: fadeInUp 0.6s ease forwards;
}

.section h2.fade-in-section::after, div.container > section h2.fade-in-section::after {
    width: 80px;
}
.section h2::after, div.container > section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
    transition: width 0.8s ease-out;
    transition-delay: 0.3s;
}

.section h2, div.container > section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--nature-blue);
    font-size: 2.2em;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media screen and (max-width: 768px) {
    .section h2, div.container > section h2 {
        font-size: 1.5em;
    }
}

.section h2::after, div.container > section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
    transition: width 0.8s ease-out;
    transition-delay: 0.3s;
}

.notice-section .notice {
    background: #fffbe6;
    border: 1px solid #f0e68c;
    border-radius: 10px;
    padding: 18px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .notice-section  {
        padding: 0;
    }
}

.notice-section .notice h4 {
    color: var(--nature-blue);
    margin-bottom: 10px;
}

.notice-section .notice li {
    text-align: left;
    color: var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 10px;
}

/* Reserved Seat Styles */
.reserved-seat-info {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.reserved-seat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #2b6cb0;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.15);
    transition: all 0.3s ease;
}

.reserved-seat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(43, 108, 176, 0.25);
}

.reserved-seat-card h3 {
    color: var(--nature-blue);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.seat-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 2.5em;
    font-weight: bold;
    color: #2b6cb0;
}

.price-currency {
    font-size: 1.2em;
    color: #666;
    margin-left: 10px;
}

.seat-description {
    font-size: 1.1em;
    color: var(--secondary-color);
    margin: 15px 0;
    font-weight: 500;
}

.seat-note {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

.seat-cta {
    margin: 25px 0;
}

.seat-cta .cta-button {
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.seat-cta .cta-button:hover {
    background: linear-gradient(135deg, #1e4a72, #2b6cb0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.seat-notes {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.seat-notes p {
    color: #666;
    font-size: 0.9em;
    margin: 8px 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .reserved-seat-card {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .price-amount {
        font-size: 2em;
    }
    
    .seat-cta .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}
