body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(120deg, #f0f4ff, #ffffff);
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}
.header {
    text-align: center;
    margin-bottom: 40px;
}
.header h1 {
    color: #2c3e50;
    font-weight: 600;
}
.header p {
    color: #555;
    max-width: 700px;
    margin: 10px auto 0;
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.info-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.info-box h2 {
    color: #1a73e8;
    margin-bottom: 15px;
}
.category {
    border-bottom: 1px dashed #ddd;
    padding: 4px 0;
}
.category:last-child {
    border-bottom: none;
}
.category strong {
    display: block;
    color: #333;
}
.price {
    color: #27ae60;
    font-weight: 500;
}

.age-limit {
    color: #dd1010;
    font-weight: 300;
}
.form-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.form-box h2 {
    margin-bottom: 20px;
    color: #1a73e8;
}
.form-group {
    margin-bottom: 15px;
}

  .payment-qr {
    margin-top: 25px;
    padding: 15px;
    background: #f9fafb;
    border: 1px dashed #ccc;
    border-radius: 10px;
    text-align: center;
}

.payment-qr h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.qr-image {
    width: 180px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.qr-note {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}
input,
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}
textarea {
    resize: none;
}
.btn {
    width: 100%;
    padding: 12px;
    background: #1a73e8;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn:hover {
    background: #1558b0;
}
.note {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}
