@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: "Inter", sans-serif !important;
}

/* Responsive Header Styles - Cincinnati Page */
.gigflex-header-container {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
}

.gigflex-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gigflex-logo-section img {
    max-height: 30px;
    width: auto;
}

.gigflex-nav-section {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.gigflex-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.gigflex-nav-item {
    margin: 0;
    position: relative;
}

.gigflex-nav-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
}

.gigflex-nav-link:hover {
    color: #F04D23;
}

.gigflex-nav-link.active {
    color: #F04D23;
}

/* Sticky underline for active and hover states */
.gigflex-nav-link.active::after,
.gigflex-nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -25px;
    /* Position at bottom of header */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F04D23;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 2px;
}

.gigflex-cta-section {
    display: flex;
    align-items: center;
}

.gigflex-demo-button {
    background-color: #F04D23;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 33px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
}

.gigflex-demo-button:hover {
    background-color: #D94A28;
}

/* Mobile Menu Toggle */
.gigflex-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.gigflex-mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 990px) {
    .gigflex-header-container {
        padding: 15px 20px;
    }

    .gigflex-nav-section {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .gigflex-nav-section.active {
        display: flex;
    }

    .gigflex-nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .gigflex-nav-link {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    /* Remove sticky underline on mobile */
    .gigflex-nav-link.active::after,
    .gigflex-nav-link:hover::after {
        display: none;
    }

    .gigflex-mobile-toggle {
        display: flex;
    }

    .gigflex-cta-section {
        display: none;
    }

    .gigflex-cta-section.mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .gigflex-demo-button {
        width: 100%;
        max-width: 200px;
    }

    .gigflex-hero-title {
        margin-bottom: 21px;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 45px;
        line-height: 55px;
        text-transform: capitalize;
    }


}

@media (max-width: 480px) {
    .gigflex-logo-section img {
        max-height: 25px;
    }
}

/* Animation for mobile menu */
.gigflex-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gigflex-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.gigflex-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced hover effects for desktop */
@media (min-width: 769px) {
    .gigflex-nav-link {
        position: relative;
        overflow: visible;
    }

    /* Remove the ::before pseudo-element as it conflicts with ::after */
    .gigflex-nav-link::before {
        display: none;
    }

    /* Ensure the underline is always at the bottom of the header */
    .gigflex-header-container {
        border-bottom: 1px solid transparent;
    }
}

/* Hero Section Styles */
.gigflex-hero-section {
    position: relative;
    height: 100%;
    max-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.gigflex-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cincinnati-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gigflex-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* z-index: 1; */
}

.gigflex-hero-container {
    position: relative;
    /* z-index: 2; */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gigflex-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.gigflex-hero-left {
    color: #FFFFFF;
}

.gigflex-hero-title {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 50px;
    line-height: 65px;
    text-transform: capitalize;
}

.gigflex-hero-description {
    margin-bottom: 44px;
    color: #FFFFFF;
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.gigflex-hero-cta {
    display: inline-block;
    background-color: #00B6B8;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
}

.gigflex-hero-cta:hover {
    background-color: #0097A7;
    color: #FFFFFF;
    text-decoration: none;
}

.gigflex-hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gigflex-hero-image {
    position: relative;
    z-index: 3;
}

.gigflex-player-image {
    max-width: 400px;
    height: auto;
    opacity: 0.9;
    mix-blend-mode: multiply;
}

.gigflex-hero-right {
    display: flex;
    justify-content: flex-end;
}

.gigflex-form-container {
    position: relative;
    /* Required for absolute positioning of ::after */
    background-color: #FFFFFF;
    padding: 35px 40px;
    border-radius: 0px;
    width: 100%;
    max-width: 420px;
    z-index: 1;
}

.gigflex-form-container::after {
    content: '';
    position: absolute;
    bottom: -21px;
    top: 110px;
    right: -8px;
    width: 160px;
    height: calc(100% - 102px);
    border-right: 8px solid #F04D23;
    border-bottom: 8px solid #F04D23;
    border-radius: 0;
    z-index: -1;
}

.gigflex-form-title {
    color: #000;
    margin-bottom: 8px;
    text-align: left;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 14px;
}

.gigflex-form-accent {
    width: 78px;
    height: 2px;
    background-color: #E44117;
    margin-bottom: 24px;
    border-radius: 2px;
}

.gigflex-hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gigflex-form-group {
    position: relative;
}

.gigflex-form-input {
    width: 100% !important;
    /* padding: 15px 20px !important; */
    border: 1px solid #D2D2D2 !important;
    border-radius: 6px !important;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    color: #5C5C5C !important;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 100%;
    text-transform: capitalize;
}

.gigflex-form-input::placeholder {
    color: #5C5C5C !important;
}

.gigflex-form-input:focus {
    outline: none;
    border-color: #00BCD4;
}

.gigflex-phone-input {
    display: flex;
    align-items: center;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.gigflex-country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    border-right: 2px solid #E5E7EB;
    min-width: 80px;
}

.gigflex-flag {
    width: 20px;
    height: 14px;
}

.gigflex-code {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.gigflex-phone-field {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
}

.gigflex-phone-field:focus {
    border-color: transparent;
}

.gigflex-form-submit {
    background-color: #00B6B8;
    color: #FFFFFF;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: capitalize;
    text-decoration: none !important;
}

.gigflex-form-submit:hover {
    background-color: #0097A7;
}

/* Hero Section Responsive Design */
@media (max-width: 1200px) {
    .gigflex-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gigflex-hero-center {
        display: none;
    }

    /* .gigflex-hero-title {
        font-size: 3rem;
    } */
}

@media (max-width: 768px) {
    .gigflex-hero-section {
        position: relative;
        height: 100%;
        max-height: 100% !important;
        display: flex;
        align-items: center;
        overflow: visible;
        padding: 60px 0;
    }

    .gigflex-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }



    .gigflex-form-container {
        padding: 30px 20px;
        max-width: 100%;
    }

    .gigflex-hero-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .gigflex-hero-title {
        font-size: 30px;
        line-height: 40px;
    }

    .gigflex-hero-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .gigflex-form-submit {
        padding: 14px 24px;
        font-size: 1rem;
    }
}



.expertise-section {
    text-align: center;
    padding: 120px 0px;
    font-family: 'Inter', sans-serif;
}

.expertise-section .section-title {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 23px;
}

.expertise-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 3px;
    background-color: #E44117;
    border-radius: 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    position: relative;
    background: #fff;
    padding: 0px 35px 30px 35px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.expertise-card .card-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    top: -9px;
    position: relative;
}

.expertise-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    text-transform: capitalize;
    color: #000;
}

.expertise-card p {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #333333;
}

/* C-shaped borders */
.expertise-card::before,
.expertise-card::after {
    content: ' ';
    position: absolute;
    width: 75px;
    height: 100%;
    border: 7px solid #00B6B8;
}

/* Top-left corner: missing bottom side */
.expertise-card::before {
    top: 0;
    left: 0;
    border-right: none;
}

/* Bottom-right corner: missing top side */
.expertise-card::after {
    bottom: 0;
    right: 0;
    border-left: none;
}

@media only screen and (max-width: 990px) {
    .expertise-section {
        text-align: center;
        padding: 80px 0px;
        font-family: 'Inter', sans-serif;
    }
}

@media only screen and (max-width: 576px) {
    .expertise-section {
        text-align: center;
        padding: 60px 0px;
        font-family: 'Inter', sans-serif;
    }

    .expertise-section .section-title {
        margin-bottom: 60px;
        font-weight: 700;
        font-size: 25px;
        line-height: 35px;
        text-align: center;
        color: #000;
        position: relative;
        display: inline-block;
        padding-bottom: 23px;
    }
}



.eventworks-banner-section img {
    width: 100%;
    height: 100%;
}

.eventworks-banner-section {
    padding-bottom: 120px;
    padding-top: 0px;
}

@media only screen and (max-width: 990px) {
    .eventworks-banner-section {
        padding-bottom: 80px;
        padding-top: 0px;
    }
}

@media only screen and (max-width: 576px) {
    .eventworks-banner-section {
        padding-bottom: 60px;
        padding-top: 0px;
    }
}


/* Event Section */
/* Section Styling */
.event-section {
    width: 100%;
    padding: 120px 0px;
    background: linear-gradient(180deg, #F6F6F6 0%, #FDFDFD 100%);

}

.event-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    gap: 80px;
}

/* Image Container */
.event-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 25px;
}

.event-image-container img {
    width: 100%;
    height: auto;
    display: block;
}



/* NEW: Decorative corners using pseudo-elements */
.event-image-container::before,
.event-image-container::after {
    content: '';
    position: absolute;
    width: 75px;
    /* Controls the length of the corner lines */
    height: 75px;
    /* Controls the length of the corner lines */
    border-color: #e64a19;
    /* Orange color */
    border-style: solid;
}

.event-image-container::before {
    top: 0;
    left: 0;
    border-width: 6px 0 0 6px;
    /* Creates the Top and Left borders */
}

.event-image-container::after {
    bottom: 0;
    right: 0;
    border-width: 0 6px 6px 0;
    /* Creates the Right and Bottom borders */
}


/* Text Container */
.event-text-container {
    flex: 1;
    min-width: 300px;
}

.event-text-container h2 {
    margin-top: 0;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
}

.event-text-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 78px;
    height: 3px;
    background-color: #E44117;
}

.event-text-container p {
    color: #4f4f4f;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.event-text-container ul.event-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-text-container ul.event-text-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.event-text-container ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: -2px;
    color: #00B6B8;
    font-size: 23px;
}

.event-text-container ul.event-text-list li {
    color: #4F4F4F;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
    margin-left: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.event-text-container ul.event-text-list li strong {
    font-weight: 700;
    color: #272727;
}

/* Responsive Design */
@media only screen and (max-width: 1100px) {
    .event-container {
        gap: 40px;
    }

}

@media (max-width: 992px) {


    .event-text-container {
        padding-left: 0;
        padding-top: 2rem;
    }

    .event-section {
        width: 100%;
        padding: 80px 0px;
        background: linear-gradient(180deg, #F6F6F6 0%, #FDFDFD 100%);
    }
}

@media (max-width: 576px) {
    .event-section {
        padding: 60px 0;
    }

    .container {
        padding: 1.5rem;
    }

    .event-text-container h2 {
        font-size: 25px;
        line-height: 35px;
    }


}

/* Event Section */

/* Capabilities Section Styling */
.capabilities-section {
    width: 100%;
    padding-top: 0;
    padding-bottom: 120px;
}

.capabilities-container {
    text-align: center;
}

.capabilities-section .section-title {
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 23px;
}

.capabilities-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 3px;
    background-color: #e64a19;
    /* Orange color */
}

/* Grid for the cards */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

/* Individual Card Styling */
.capability-card {
    background-color: #F6F6F6;
    padding: 20px 40px 20px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-inner-card {
    border-left: 5px solid #E44117;
    padding-left: 30px;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.capability-card h3 {
    color: #000;
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
}

.capability-card p {
    color: #4f4f4f;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .capabilities-section {
        width: 100%;
        padding-top: 0;
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {


    .capabilities-grid {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .capability-card {
        padding: 1.5rem;
    }



    .capability-card h3 {
        font-size: 18px;
    }




    .capabilities-section .section-title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 40px;
    }

    .capabilities-section {
        width: 100%;
        padding-top: 0;
        padding-bottom: 60px;
    }

}

/* Capabilities Section Styling */

/* New Capabilities Section Styling */
.capabilities-section-v2 {
    padding: 100px 0;
    background-image: linear-gradient(rgba(239, 239, 239, 0.95), rgba(239, 239, 239, 0.9)), url('../images/capabilities-banner.png');
    background-size: cover;
    background-position: center;
}

.capabilities-container-v2 {
    max-width: 90%;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.capabilities-text {
    flex: 1;
    min-width: 0;
}

.capabilities-section-v2 .section-title {
    margin-bottom: 28px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 23px;
}

.capabilities-section-v2 .section-title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    transform: none;
    width: 78px;
    height: 3px;
    background-color: #E44117;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    margin-bottom: 18px;
    margin-top: 0;
    margin-left: 0;
}

.capabilities-list li:last-child {
    margin-bottom: 0;
}

.capabilities-list h3 {
    color: #000;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
}

.capabilities-list p {
    color: #4f4f4f;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.capabilities-image {
    flex: 1;
    min-width: 0;
}

.capabilities-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .capabilities-container-v2 {
        flex-direction: column;
        gap: 40px;
        margin-right: auto;
    }

    .section-title-v2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .capabilities-section-v2 {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .capabilities-section-v2 {
        padding: 60px 0;
    }

    .capabilities-list h3 {
        font-size: 18px;
    }



    .capabilities-section-v2 .section-title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 40px;
    }
}

/* New Capabilities Section Styling */


/* Promo Section Styling */
.promo-section {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
    /* Ensures the angled background doesn't spill out */
}

.background-logo {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%) scale(2.5);
    width: 300px;
    height: 300px;
    opacity: 0.05;
    z-index: 2;
}

.promo-container {
    display: block;
    align-items: center;
    z-index: 3;
    background-image: url('../images/promo-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 340px;
    min-height: 340px;
}

.promo-text {
    width: 50%;
    color: white;
    align-items: center;
    vertical-align: middle;
    align-content: center;
    height: 100%;
    padding-left: 80px;
}



.promo-text h1 {
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}


.promo-text p {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.promo-button {
    background-color: #fff;
    color: #E44117;
    padding: 16px 33px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-size: 14px;
    line-height: normal;
}

.promo-button:hover {
    background-color: #f0f0f0;
}

.promo-image {
    position: absolute;
    right: 20px;
    height: 400px;
    bottom: 44px;
    width: 50%;
}

.promo-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media only screen and (max-width: 1100px) {
    .promo-container {
        height: 266px;
        min-height: auto;
    }

    .promo-image {
        position: absolute;
        right: 20px;
        height: auto;
        bottom: 0px;
        width: 48%;
    }
}

@media (max-width: 992px) {

    .promo-section {
        position: relative;
        padding: 80px 0 80px 0;
        overflow: hidden;
    }

    .promo-container {
        height: 240px;
        min-height: auto;
    }

    .promo-text {
        padding-left: 30px;
    }

    .promo-image {
        order: 1;
    }

    .promo-text h1 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }



    .promo-text p {
        margin-bottom: 15px;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
    }

    .promo-button {
        background-color: #fff;
        color: #E44117;
        padding: 14px 25px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 6px;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: inline-block;
        font-size: 13px;
        line-height: normal;
    }
}

@media (max-width: 576px) {

    .promo-section {
        padding: 60px 0;
    }

    .promo-container {
        height: 100%;
        min-height: auto;
        padding: 25px;
    }

    .promo-image {
        display: none;
    }

    .promo-text {
        padding-left: 0px;
        width: 100%;
    }

    .promo-text h1 {
        font-size: 18px;
    }


}

/* Promo Section Styling */


/* FAQ Section Styling */
.events-faq-section {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 100px;
}

.events-faq-container {
    text-align: center;
}

.section-title-events-faq {
    margin-bottom: 56px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 23px;
}

.section-title-events-faq::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 3px;
    background-color: #E44117;
    /* Orange color */
}


.events-faq-item {
    background-color: #F6F6F6;
    padding: 30px 35px;
    margin-bottom: 26px;
    text-align: left;
}

.events-faq-item:last-child {
    margin-bottom: 0;
}

.events-faq-item h3 {
    color: #000000;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 14px;
}

.events-faq-item p {
    color: #4F4F4F;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}



/* Responsive Design */
@media (max-width: 990px) {
    .events-faq-section {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .section-title-events-faq {
        font-size: 2rem;
    }

    .events-faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .events-faq-section {
        padding-bottom: 60px;
    }

    .section-title-events-faq {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 40px;
    }

    .events-faq-item h3 {
        font-size: 18px;
    }

    .events-faq-container {
        padding: 0px !important;
    }
}

/* FAQ Section Styling */

/* Contact Section Styling */
.events-contact-section {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 110px;
}

.events-contact-container {
    text-align: center;
}

.section-title-events-contact {
    margin-bottom: 42px;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}

.section-title-events-contact::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 3px;
    background-color: #e64a19;
    /* Orange color */
}

.events-contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #00B6B8;
    text-decoration: none !important;
}

.contact-item span {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    /* text-transform: capitalize; */
    color: #00B6B8;
    text-decoration: none !important;
}

.contact-item.first-item {
    border-right: 2px solid #E44117;
    padding-right: 18px;
}

.contact-item:hover {
    text-decoration: underline;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 990px) {
    .events-contact-section {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .section-title-events-contact {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {

    .events-contact-section {
        padding-bottom: 60px;
    }

    .contact-item.first-item {
        border-right: none;
        padding-right: 0;
    }

    .section-title-events-contact {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 40px;
    }

    .events-contact-details {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        font-size: 1rem;
    }
}

/* Contact Section Styling */