html, body {
    color: #ffffff;
    font-family: 'Manrope';
}
.digital-conference-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    color: #ffffff !important;
    margin-bottom: 80px;
    box-sizing: border-box;
    max-height: 100vh;
}
h1, h2, h3 {
    all: initial !important; 
    font-weight: bold !important;
    color: inherit !important;
}
.conference-image-column {
    flex: 1 !important;
    min-height: 300px !important;
    position: relative !important;
}

.conference-image-column p {
    position: absolute !important;
    bottom: 60px !important;
    left: 250px !important;
    font-size: 16px !important;
    font-family: 400 !important;
    display: flex !important;
}

.conference-image-column img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.conference-text-column {
    flex: 1;
    padding: 0 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
    margin-top: 140px;
    position: relative;
    z-index: 1;
}

.conference-text-column::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(204, 157, 106, 0.3) 0%, rgba(204, 157, 106, 0) 70%);
    transform: translate(-40%, -70%) rotate(45deg);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.conference-text-column .date {
    font-weight: 800 !important;
    font-size: 28px !important;
    line-height: 130% !important;
    letter-spacing: 0px !important;
    color: #CC9D6A !important;
}

.conference-text-column .title {
    font-weight: 800 !important;
    font-size: 80px !important;
    line-height: 130% !important;
    letter-spacing: 0px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.conference-text-column .location-description {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 440px !important;
    height: 64px !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.conference-text-column .location-description svg {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
}

.register-button {
    width: 190px !important;
    height: 52px !important;
    border-radius: 6px !important;
    background: #CC9D6A !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-top: 31px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.participants-count {
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 160% !important;
    letter-spacing: 0px !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
    margin-top: 100px !important;
}

.participants-count span {
    color: #CC9D6A !important;
}

@media (max-width: 1024px) {
    .digital-conference-section {
        flex-direction: column !important;
        position: relative !important;
    }
    .conference-image-column {
        width: 100% !important;
        height: 100vh !important;
    }
    .conference-image-column img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .conference-text-column {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        padding: 1.5rem !important;
        width: 100% !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent) !important;
        z-index: 2 !important;
    }
    .conference-text-column .title {
        font-size: 1rem !important;
    }
    .participants-count {
        margin-top: 0.5rem !important;
    }
    .scroll-hint {
        opacity: 0 !important;
    }
}


/* <!-- Our top speakers --> */

.speakers-container {
    width: 80% !important;
    margin: auto !important;
    padding: 2rem !important;
    box-sizing: border-box !important;
}

.speakers-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 46px !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.speakers-header h2 {
    font-size: 40px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #fff !important;
}

.speaker-grid {
    display: grid !important;
    gap: 1.5rem !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

@media (min-width: 640px) {
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .speaker-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.speaker-card {
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    padding-bottom: 1rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.speaker-card.cta-card {
    .speaker-card.cta-card {
        background-color: #3b4252 !important;
        padding: 0 !important;
        justify-content: flex-start !important;
    }
}

.speaker-card.cta-card .cta-details {
    width: 100% !important;
    height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem !important;
    background-color: #3b4252 !important;
}

.speaker-card.cta-card .cta-details .speaker-button {
    margin-top: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    background-color: #d6a25b !important;
    color: #fff !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: background-color 0.3s ease !important;
}

.speaker-card.cta-card .cta-details p {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

.speaker-card img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.cta-details {
    width: 100% !important;
    height: 320px !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.speaker-card h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0.5rem 0 0.25rem 0 !important;
    color: #ffffff !important;
}

.speaker-card p {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #a0aec0 !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}


/* <!-- About the digital conference --> */

.about-conference-section {
    width: 90% !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12rem !important;
    box-sizing: border-box !important;
}

.about-content {
    flex: 1 !important;
    max-width: 600px !important;
    text-align: center !important;
    margin-top: 185px !important;
}

.about-content h4 {
    font-weight: 800 !important;
    font-size: 40px !important;
    line-height: 125% !important;
    letter-spacing: 0px !important;
    margin-bottom: 1.5rem !important;
    color: #ffffff !important;
}

.about-content2 {}

h1,
h2,
h3 {
    all: set !important;
}

.about-content p {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 160% !important;
    letter-spacing: 0px !important;
    color: #a0aec0 !important;
    margin-bottom: 1rem !important;
}

.about-images {
    position: relative !important;
    width: 511px !important;
    height: 664px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.about-images img {
    position: absolute !important;
    width: 260px !important;
    height: 574px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.about-images .img-main {
    top: 90.34px !important;
    left: 251px !important;
    z-index: 2 !important;
    margin: 0 21.5px !important;
}

.about-images .img-overlap {
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}


/* Responsive adjustments for larger screens */

@media (min-width: 768px) {
    .about-conference-section {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 3rem !important;
        padding: 4rem 2rem !important;
    }
    .about-content {
        text-align: left !important;
        padding-right: 2rem !important;
    }
    .about-images {
        width: 511px !important;
        height: 664px !important;
        position: relative !important;
        display: block !important;
        gap: 0 !important;
    }
    .about-images img {
        position: absolute !important;
        width: 260px !important;
        height: 574px !important;
    }
    .about-images .img-main {
        top: 90.34px !important;
        left: 251px !important;
    }
    .about-images .img-overlap {
        top: 0 !important;
        left: 0 !important;
    }
}


/* Responsive adjustments for smaller screens */

@media (max-width: 767px) {
    .about-conference-section {
        padding: 1.5rem !important;
        gap: 2rem !important;
    }
    .about-content {
        max-width: 100% !important;
    }
    .about-content h4 {
        font-size: 32px !important;
    }
    .about-content p {
        font-size: 16px !important;
    }
    .about-images {
        width: 100% !important;
        height: auto !important;
        position: static !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    .about-images img {
        width: 100% !important;
        height: 400px !important;
        object-fit: cover !important;
        position: static !important;
    }
    /* Remove specific top/left positioning for mobile images */
    .about-images .img-main,
    .about-images .img-overlap {
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
}


/* <!-- Agenda section --> */

.container-agenda {
    width: 78% !important;
    display: flex !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    margin-bottom: 30px !important;
}

.sidebar {
    width: 30% !important;
    padding-right: 40px !important;
}

.sidebar h2 {
    font-size: 28px !important;
    margin-bottom: 10px !important;
font-weight: bold  !important;
color: #ffffff  !important;
}

.sidebar p {
    font-size: 13px !important;
    color: #c0c0c0 !important;
}

.date-box {
    background-color: #CC9D6A !important;
    color: white !important;
    padding: 50px !important;
    margin-top: 30px !important;
    font-weight: bold !important;
    font-size: 18px !important;
    width: fit-content !important;
    border-radius: 8px !important;
}

.agenda {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sidebar {
    margin-top: -70px !important;
}

.item {
    display: flex !important;
    gap: 20px !important;
}

.item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding-block: 30px !important;
    border-bottom: 1px solid #2c2f45 !important;
}

.item:last-child {
    border-bottom: none !important;
}

.item {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid #2c2f45 !important;
}

.content {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 60% !important;
}

.content h3 {
    margin: 0 !important;
font-weight: bold !important;
color: #fff !important;
    font-size: 16px !important;
}
strong{
font-weight: bold !important;
color: #fff !important;
}
.content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #cfcfcf !important;
    margin: 0 !important;
}

.speakers {
    display: flex !important;
    flex-direction: row !important;
    /* align-items: center; */
    gap: 30px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.speaker,
.speakers .speaker {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.speaker img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.speaker span {
    color: #999 !important;
    font-size: 13px !important;
}

@media (max-width: 992px) {
    .container-agenda {
        flex-direction: column !important;
        width: 90% !important;
        padding: 20px !important;
    }
    .sidebar {
        width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    .date-box {
        padding: 30px !important;
        font-size: 16px !important;
        margin: 20px auto 0 !important;
    }
    .agenda {
        width: 100% !important;
        margin-top: 30px !important;
    }
    .item {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .time {
        margin-bottom: 10px !important;
    color: #ffffff !important;
    font-family: 'Manrope';
    }
    .speakers {
        flex-direction: column !important;
        gap: 10px !important;
    }
}
    .time {
    color: #ffffff !important;
    font-family: 'Manrope';
    }


@media (max-width: 576px) {
    .date-box {
        padding: 20px !important;
        font-size: 14px !important;
    }
    .content h3 {
        font-size: 15px !important;
    }
    .content p {
        font-size: 13px !important;
    }
    .speaker img {
        width: 32px !important;
        height: 32px !important;
    }
    .speaker span {
        font-size: 12px !important;
    }
}


/* <!-- QRCode section --> */

.networking-section {
    background-color: #CC9D6A !important;
    padding: 4rem 1.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.networking-container {
    max-width: 79%!important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    align-items: center !important;
}

.qr-card-column {
    position: relative !important;
    width: 100% !important;
    max-width: 636px !important;
    height: 338px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.qr-card-column .background-image {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

.qr-content-overlay {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 80% !important;
    height: 100% !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    color: #1a202c !important;
}

.text-button-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.qr-content-overlay img.qr-code {
    position: static !important;
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    margin: 1.5rem 0 1rem 0 !important;
    z-index: 2 !important;
}

.qr-content-overlay h3 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.join-button {
    background-color: #CC9D6A !important;
    color: #ffffff !important;
    padding: 13px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    width: 80% !important;
    max-width: 200px !important;
    text-align: center !important;
}

.join-button:hover {
    background-color: #e0b06b !important;
}

.networking-text-column {
    flex: 1 !important;
    text-align: center !important;
    max-width: 600px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.networking-text-column h2 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 40px !important;
    line-height: 125% !important;
    letter-spacing: 0px !important;
    margin-bottom: 1rem !important;
}

.networking-text-column .bullet-point {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    color: #f0f0f0 !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 450px !important;
}

.networking-text-column .bullet-point .icon-circle {
    background-color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-top: 0.25rem !important;
}

.networking-text-column .bullet-point svg {
    width: 20px !important;
    height: 20px !important;
    fill: #10162E !important;
}

.networking-text-column .bullet-point p {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 160% !important;
    letter-spacing: 0px !important;
    margin: 0 !important;
}

@media (min-width: 300px) and (max-width: 768px) {
    .qr-card-column {
        max-width: 636px !important;
        height: 450px !important;
    }
}

@media (min-width: 768px) {
    .networking-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }
    .qr-card-column {
        max-width: 636px !important;
        height: 338px !important;
    }
    .qr-content-overlay {
        padding: 2rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
    }
    .text-button-group {
        align-items: flex-start !important;
        gap: 0.5rem !important;
        margin-top: 0 !important;
    }
    .qr-content-overlay h3 {
        text-align: left !important;
        font-size: 40px !important;
        margin-bottom: 40px !important;
    }
    .qr-content-overlay img.qr-code {
        position: absolute !important;
        top: 2rem !important;
        right: 2rem !important;
        width: 150px !important;
        height: 150px !important;
        margin: 0 !important;
    }
    .join-button {
        align-self: flex-start !important;
        width: auto !important;
        max-width: none !important;
    }
    .networking-text-column {
        text-align: left !important;
        align-items: flex-start !important;
    }
    .networking-text-column h2 {
        font-size: 40px !important;
    }
    .networking-text-column .bullet-point p {
        font-size: 20px !important;
    }
}


/* map section */

.map-section {
    width: 81% !important;
    max-width: 1296px !important;
    margin: 80px auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
    border-radius: 8px !important;
}

.map-header {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.map-header h2 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 140% !important;
    letter-spacing: 0px !important;
    color: #ffffff !important;
    margin: 0;
}

.map-header p {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 40px !important;
    line-height: 125% !important;
    letter-spacing: 0px !important;
    color: #ffffff !important;
    margin: 0;
}

.map-header .arrow-image {
    width: 80px !important;
    height: auto !important;
    margin-top: 60px !important;
}

.map-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
    position: relative !important;
}

.map-pin {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -100%) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.map-content img {
    width: 100% !important;
    max-width: 952px !important;
    height: auto !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    display: block !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    z-index: 1 !important;
}

.map-container {
    width: 100% !important;
    max-width: 416px !important;
    height: 240px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    background-color: #3b4252 !important;
    position: static !important;
    transform: none !important;
    margin: 0 auto !important;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
    filter: grayscale(100%) invert(80%) !important;
    position: relative !important;
}

@media (min-width: 768px) {
    .map-section {
        flex-direction: row !important;
        gap: 2rem !important;
    }
    .map-header {
        width: 20% !important;
        text-align: left !important;
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .map-content {
        width: 80% !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        position: relative !important;
    }
    .map-content img {
        width: 952px !important;
        height: 440px !important;
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 1 !important;
    }
    .map-container {
        position: absolute !important;
        width: 416px !important;
        height: 240px !important;
        bottom: -250px !important;
        left: 350px !important;
        z-index: 2 !important;
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .map-section {
        margin: 40px auto !important;
        padding: 1rem !important;
    }
    .map-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 1rem !important;
    }
    .map-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .map-header p {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .map-header .arrow-image {
        width: 60px !important;
        margin-top: 1rem !important;
        align-self: flex-start !important;
    }
    .map-content {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }
    .map-content img {
        width: 100% !important;
        height: auto !important;
    }
    .map-container {
        width: 100% !important;
        height: 200px !important;
        margin-top: 1.5rem !important;
    }
}


/* <!-- parking section --> */

.parking-section-container {
    max-width: 81% !important;
    margin: 40px auto !important;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-sizing: border-box;
}

.parking-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    border-radius: 8px;
    padding: 2rem;
    box-sizing: border-box;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
}

.video-block {
    width: 100%;
    max-width: 306px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: calc(634 / 306 * 100%);
    height: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease;
    fill: #FFFFFF;
}

.video-caption {
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #ffffff;
    margin-top: 24px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.image-text-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
}

.image-text-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.parking-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.parking-keyword-box {
    background-color: rgba(45, 55, 72, 0.8);
    border-radius: 30px;
    padding: 12px 24px;
    width: auto;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-bottom: 15px;
}

.parking-keyword-box h3 {
    font-weight: 800 !important;
    font-size: 28px !important;
    line-height: 125% !important;
    letter-spacing: 0px !important;
    margin: 0 !important;
    color: #ffffff !important;
    text-align: center !important;
}

.cost-details {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    z-index: 2;
    background-color: transparent;
}

.cost-details p {
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 140% !important;
    letter-spacing: 0px !important;
    margin: 0 !important;
    color: #ffffff !important;
    text-align: left !important;
    margin-bottom: 8px !important;
}

.cost-details p:last-child {
    margin-bottom: 0 !important;
}

.car-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    fill: #ffffff;
    z-index: 3;
}

.cost-details .highlight {
    color: #d6a25b !important;
    font-weight: 800 !important;
}

@media (min-width: 1025px) {
    .parking-content-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        margin-top: 180px;
    }
    .video-block {
        width: 306px;
        height: 634px;
        max-width: none;
    }
    .video-wrapper {
        padding-bottom: 0;
        height: 100%;
    }
    .image-text-block {
        width: 870px !important;
        height: 634px;
        flex-shrink: 0;
        position: relative;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .image-text-block img {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 1;
    }
    .parking-overlay-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .parking-keyword-box {
        position: absolute;
        top: 49.7px;
        left: 28px;
        width: 214px;
        height: 98px;
        padding: 24px 32px;
        margin-bottom: 0;
    }
    .parking-keyword-box h3 {
        font-size: 40px !important;
    }
    .cost-details {
        position: absolute;
        top: 49.7px;
        left: 280px !important;
        width: 587px;
        height: 150px;
        flex-direction: column;
        background-color: transparent;
    }
    .cost-details p {
        font-size: 40px !important;
    }
}

@media (min-width: 568px) and (max-width: 1024px) {
    .parking-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
    }
    .video-block {
        width: 247px;
        height: 554px;
        max-width: none;
    }
    .video-wrapper {
        padding-bottom: 0;
        height: 100%;
    }
    .image-text-block {
        width: 315px;
        height: 554px;
        max-width: none;
        border-radius: 6px;
    }
    .parking-overlay-content {
        padding: 1.5rem;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .parking-keyword-box {
        padding: 0.75rem 1.2rem;
        margin-bottom: 10px;
    }
    .parking-keyword-box h3 {
        font-size: 40px !important;
    }
    .cost-details p {
        font-size: 28px !important;
    }
    .car-icon {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 567px) {
    .parking-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 1rem;
    }
    .video-block {
        width: 316px;
        height: 369px;
        max-width: none;
    }
    .video-wrapper {
        padding-bottom: 0;
        height: 100%;
    }
    .video-caption {
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .image-text-block {
        width: 315px;
        height: 369px;
        max-width: none;
        border-radius: 6px;
    }
    .image-text-block img {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .parking-overlay-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 1rem;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .parking-keyword-box {
        background-color: rgba(45, 55, 72, 0.8);
        padding: 0.5rem 1rem;
        margin-bottom: 8px;
    }
    .parking-keyword-box h3 {
        font-size: 40px !important;
    }
    .cost-details {
        background-color: transparent;
    }
    .cost-details p {
        font-size: 28px;
    }
    .car-icon {
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
    }
}


/* <!-- Next Event section --> */

.containe-events {
    width: 100%;
    margin-bottom: 80px;
    background-color: #1C2238;
    box-sizing: border-box;
}

.section-heading {
    font-size: 40px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-align: center !important;
margin: 34px auto !important ;
}

.grid-container {
    width: 90.42%;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.event-card {
    position: relative;
}

.event-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin: 0;
    display: block;
}

.card-icon {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background-color: white;
    border-radius: 100px;
    padding: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #011E60;
}

.card-icon svg {
    fill: currentColor;
}

.card-content {
    padding: 1rem;
    background-color: #272D42;
    margin: 0;
    border-radius: 0 0 8px 8px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-meta>span+span {
    color: #999;
}

.card-title {
    font-size: 13px !important;
    color: #ffffff !important;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.6em !important;
font-weight: bold !important;
}

.tag-label {
    background-color: #ffffff !important;
    color: #011E60 !important;
    padding: 0 8px !important;
    border-radius: 0.25rem !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.divider {
    width: calc(100% - 48px);
    margin: 20px 24px 0 24px;
    opacity: 0.15;
    border: none;
    border-top: 1px solid #ffffff;
}


/* Responsive adjustments for mobile padding */

@media (max-width: 767px) {
    .containe-events {
        padding: 2rem 1rem;
    }
    .section-heading {
        font-size: 1.75rem;
    }
}


/* last section */

.events-organized-section {
    max-width: 1000px;
    margin: 88px auto;
    background-image: url("/wp-content/uploads/2025/07/15.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 4rem 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.events-organized-section h2 {
    font-size: 42px !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.events-organized-section p {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #f0f0f0 !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
}

.start-button {
    background-color: #CC9D6A !important;
    color: white !important;
    padding: 13px 33px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .events-organized-section {
        padding: 3rem 1rem;
    }
    .events-organized-section h2 {
        font-size: 2rem !important;
    }
    .events-organized-section p {
        font-size: 1rem !important;
    }
    .start-button {
        padding: 0.6rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 22, 46, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
}

.popup-content {
    background-color: #10162E;
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}


/* Contact Us section */

.change-game-section {
    background-color: #10162E;
    padding: 50px 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}

.change-game-header {
    text-align: center;
    margin-bottom: 40px;
}

.change-game-header h2 {
    font-size: 40px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    color: #FFFFFF !important;
}

.change-game-header p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #666F8F !important;
    line-height: 1.5 !important;
}

.change-game-form {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    background-color: #1C2238;
    border: 1px solid #272D42;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
}

.form-group input::placeholder {
    color: #666F8F;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.custom-select {
    width: 100%;
    background-color: #1C2238;
    border: 1px solid #272D42;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    color: #666F8F;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    padding-right: 40px;
}

.custom-select option {
    background-color: #1C2238;
    color: #FFFFFF;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 15px;
    pointer-events: none;
}

.send-request-button {
    background-color: #CC9D6A;
    color: #f3f2fb;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    align-self: center;
}

.send-request-button:hover {
    background-color: #e0ac75;
}

@media (max-width: 768px) {
    .change-game-section {
        padding: 60px 20px;
    }
    .change-game-header h2 {
        font-size: 32px !important;
    }
    .change-game-header p {
        font-size: 16px !important;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        min-width: unset;
        width: 100%;
    }
    .send-request-button {
        width: 100%;
    }
}