    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: Arial, sans-serif;
        /* background-color: #121212; */
        background-color: #FFFFFF;
        color: white;
        text-align: center;
    }
    .navbar {
        background-color: black;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 4px 10px rgba(255, 235, 59, 0.3);
    }
    .navbar .logo {
        color: #ffeb3b;
        font-size: 26px;
        font-weight: bold;
    }
    .navbar ul {
        list-style: none;
        display: flex;
    }
    .navbar ul li {
        margin: 0 20px;
    }
    .navbar ul li a {
        color: #ffeb3b;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s, transform 0.2s;
    }
    .navbar ul li a:hover {
        color: white;
        transform: scale(1.1);
    }
    .pricing-page-container {
        max-width: 700px;
        margin: 2em auto;
        padding: 2em;
        /* background-color: white; */
        background-color: #1c1c1c;
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(255, 235, 59, 0.2);
    }
    .pricing-grid {
        display: grid;
        gap: 1.5rem;
    }
    .pricing-card h3 {
        font-size: 1.8rem;
        font-weight: bold;
        color: #1c1c1c;
        margin-bottom: 10px; 
    }
    
    .pricing-card p {
        font-size: 1.4rem;
        color: #333;
        margin: 5px 0;
    }
    

    .pricing-toggle {
        margin: 2em 0;
        display: flex;
        gap: 1em; 
        justify-content: center; 
    }
    
    .pricing-toggle input[type="radio"] {
        margin-right: 0px; 
    }
    

    .pricing-toggle label {
        font-size: 1.2rem;
        color: white;
        cursor: pointer;
    }
    .pricing-card {
        background-color: #ffeb3b;
        color: #1c1c1c;
        border-radius: 12px;
        padding: 2.5rem;
        font-size: 1.3rem;
        /* font-weight: bold; */
        transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(255, 235, 59, 0.4);
        background-color: #ffeb3b;
    }
    .cta-button {
        margin-top: 15px;
        background-color: black;
        color: #ffeb3b;
        border: 2px solid #ffeb3b;
        padding: 10px 20px;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
    }
    .cta-button:hover {
        background-color: #ffeb3b;
        color: black;
    }
    @media (min-width: 768px) {
        .pricing-grid {
            display: flex;
            justify-content: center;
        }
        .pricing-grid-seat {
            display: flex;
            justify-content: center;
        }
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 20px;
    }
    
    /* Hide the default checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.4s;
        border-radius: 20px;
    }
    
    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        border-radius: 50%;
        left: 4px;
        bottom: 2.5px;
        background-color: white;
        transition: 0.4s;
    }
    
    input:checked + .slider {
        background-color: #2196F3;
    }
    
    input:checked + .slider:before {
        transform: translateX(16px);
    }

    .country-selector {
        margin: 20px auto;
        width: fit-content;
        position: relative;
    }
    
    select {
        padding: 10px 25px 10px 15px;
        font-size: 16px;
        border: 2px solid #ffeb3b;
        border-radius: 8px;
        background-color: #1c1c1c;
        color: white;
        cursor: pointer;
        appearance: none; 
        outline: none;
        margin-right: 20px;
    }
    
    .country-selector::after {
        content: "▼";
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: #ffeb3b;
        pointer-events: none;
    }
    

    select:hover,
    select:focus {
        border-color: #ffeb3b;
        background-color: #252525;
    }
    
    option {
        background-color: #1c1c1c;
        color: white;
    }
    
    h1 {
    color: #ffeb3b;
    }

    label {
        color: #ffeb3b;
        display: block;
        margin-bottom: 5px;
    }

    .info-input {
        padding: 8px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid #ffeb3b;
        background-color: transparent;
        color: #ffeb3b;
        margin-bottom: 10px;
    }

    input::placeholder {
        color: #ffeb3b;
    }

  .grid {
    display: block;
  }
  .grid > * {
    padding: 1rem;
  }
  @media (min-width: 768px) {
    .grid {
      display: grid;
      grid-auto-rows: 1fr;
      grid-template-columns: 1fr 1fr;
    }
  }
  .items-table {
    font-size: smaller;
  }

  .page-container {
    max-width: 90%;
    height: 100%;
    margin: 0 auto 2em auto;
    padding-left: 0.5em;
    padding-right: 0.5em;
    justify-content: center;
    padding: 20px;
    background-color: transparent;
    color: white;
    border-radius: 8px;
    border: 2px solid #ffeb3b;
    display: none
    }

    .grid {
        display: flex;
        gap: 20px;
        max-width: 1000px;
        width: 100%;
        height: 100%;
    }

    .checkout-container {
        flex: 1;

        background-color: transparent;
        padding: 5px;
        border-radius: 8px; 
        overflow: auto;
    }

    
    .items-table, table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
        background-color: #1c1c1c;
        border-radius: 8px;
        overflow: hidden;
    }

    th, td {
        padding: 12px;
        border: 1px solid #ffeb3b;
        text-align: left;
    }

    th {
        background-color: #ffeb3b;
        color: black;
    }

    td {
        color: white;
    }

    h3 {
        color: #ffeb3b;
        margin-top: 20px;
    }