    :root { 
        --background-color:rgb(203, 209, 211); /* Background color for the entire website, including individual sections */
        --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
        --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
        --accent-color: #8c5e42; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
        --surface-color:rgb(92, 91, 91); /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
        --contrast-color:rgb(162, 160, 160); /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    }
    body {
    background-color:rgb(203, 209, 211);
    }
    /* Steps Section */
    .steps {
        color:#f4eeee;
        display: flex;
        font-size: 16px;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 50px;
    }

    .circle {
        width: 60px;
        height: 60px;
        background-color: #ddd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 16px;
    }

    .step.active .circle {
        background-color:rgb(122, 231, 243);
        color: #150f0f;
    }

    /* Event Container */
    .event-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .event-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .event-details {
        flex: 1;
    }

    .event-details h1 {
        font-size: 2rem;
        color: #f5f4f4;
        margin-bottom: 20px;
    }
    .event-details h4 {
        font-size: 2rem;
        color: #060505;
        margin-bottom: 10px;
    }

    /* Ticket Table */
    .ticket-table {
        color:#fff6f6;
        width: 100%;
        margin-bottom: 20px;
        border-collapse: collapse;
    }

    .ticket-table th,
    .ticket-table td {
        text-align: left;
        padding: 15px;
    }

    .ticket-table th {
        font-weight: bold;
        font-size: 16px;
        color: #e5eceb;
    }

    .ticket-table td {
        background: #444444;;
        font-size: 16px;
        border-radius: 8px;
    }

    /* Ticket Quantity */
    .ticket-quantity {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ticket-quantity button {
        background-color: #4a9ffa;
        color: #fff;
        border: none;
        width: 35px;
        height: 35px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ticket-quantity button:hover {
        background-color: #4a9ffa;
    }

    .ticket-quantity span {
        font-size: 16px;
        width: 40px;
        text-align: center;
    }

    /* Total Section */
    .total {
        display: flex;
        font-size: 16px;
        color:#222;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0;
    }

    /* Checkout Button */
    .checkout-btn {
        background-color:rgb(148, 244, 244);
        color: #fff;
        border: none;
        padding: 15px 25px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 8px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 70px;
    }

    .checkout-btn:hover {
        background-color: #4a9ffa;
    }


    .btn-heartbeat {
        background-color:rgb(148, 244, 244);
        color: #fff;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 15px;
        cursor: pointer;
        animation: heartbeat 1.5s infinite;
    }
    @keyframes heartbeat {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .steps {
            flex-direction: row;
            gap: 20px;
            justify-content: center;
            flex-wrap: nowrap; /* Prevent wrapping */
        }

        .step {
            flex-direction: column;
            text-align: center;
            margin-top: 30px;
        }

        .event-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .event-image img {
            max-width: 300px;
        }

        .ticket-table th,
        .ticket-table td {
            padding: 10px;
            font-size: 14px;
        }

        .ticket-quantity button {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }

        .checkout-btn {
            width: 100%;
            text-align: center;
        }
    }

    @media screen and (max-width: 480px) {
        .circle {
            width: 50px;
            height: 50px;
            font-size: 14px;
        }

        .event-details h1 {
            font-size: 1.5rem;
        }

        .ticket-table th,
        .ticket-table td {
            padding: 8px;
            font-size: 13px;
        }

        .ticket-quantity button {
            width: 25px;
            height: 25px;
            font-size: 14px;
        }

        .checkout-btn {
            font-size: 14px;
            padding: 12px;
        }
    }
