    :root {
        --gap: 3px;
        --hover-overlay: rgba(0, 0, 0, 0.3);
        --hover-border: #E9B01F;
        --primary-color: #E9B01F;
        --text-color: #333;
        --bg-color: #fff;
    }

    body,
    main {
        background-color: #FFF;
    }

    .white::after {
        display: none
    }

    .full-header {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 400px;
    }

    .full-header img.video-bg {
        position: absolute;
        top: 40%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .container.hero-flex {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        text-align: center;
        max-width: none;
    }

    .hero-text {
        color: #fff;
        max-width: 800px;
        padding: 80px auto;
    }

    .hero-text-intro p {
        font-size: 2.3rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .animated-title {
        display: inline-block;
    }

    .h1-club-type {
        display: inline-block;
        vertical-align: top;
        margin-left: 5px;
        animation: switch 14s infinite;
        position: relative;
        height: 1.2em;
        overflow: hidden;
    }

    .club-type-item {
        line-height: 1.2em;
        height: 1.2em;
    }

    section {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 80px 0;
    }

    /* --- Full Width Text --- */
    .vm-full-width-text-section {
        padding: 80px;
        background-color: #FFF;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .vm-full-width-text-section::before {
        content: "";
        display: block;
        width: 106px;
        height: 92px;
        margin: auto;
        text-align: center;
        position: absolute;
        top: -46px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='106' height='92' viewBox='0 0 106 92'><polygon points='26.5,0 79.5,0 106,46 79.5,92 26.5,92 0,46' fill='%23FFFFFF'/></svg>");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: 10;
    }

    .vm-full-width-text {
        max-width: 1200px;
        text-align: center;
        font-size: 2.3rem;
        margin: 10px auto !important;
        font-weight: 600;
        color: black
    }

    @media (max-width: 768px) {
        .hero-h1 {
            font-size: 2.75rem;
        }

        .vm-full-width-text {
            font-size: 1.8rem;
            line-height: 1.8rem;
        }

        .vm-full-width-text-section {
            padding: 40px 20px;
        }

        .full-header img.video-bg {
            margin-left: 0;
            top: 50% !important;
            left: 50% !important;
        }
    }

    .club-benefits {
        background: #FFF;
        padding: 4rem 1rem;
    }

    .benefits-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem 2rem;
        max-width: 1800px;
        margin: 0 auto;
    }

    .benefit {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .benefit .icon {
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .benefit .text {
        margin-left: 20px
    }

    h3 {
        font-size: 2rem;
        margin: 0 0 0.5rem;
        color: #222;
    }

    .benefit .text p,
    .buz-text {
        font-size: 1em;
        color: #555;
        margin: 0;
    }

    /* === Base Button === */
    .button {
        display: table;
        margin: 0.5rem auto 1rem auto;
        padding: 12px 24px;
        font-family: inherit;
        font-size: 1.6rem;
        font-weight: 600;
        color: #fff;
        background-color: #e9b01f;
        text-decoration: none;
        letter-spacing: 1px;
        text-align: center;
        line-height: 1.5;
        cursor: pointer;
        border: none;
        border-radius: 0;
        table-layout: fixed;
    }

    .button:hover {
        background-color: #ebb836;
    }

    .button:active {
        background-color: #d9a215;
    }

    /* === Responsive Images === */
    .trusted-logo {
        display: block;
        margin: 1.5rem auto;
        max-width: 100%;
        height: auto;
        border: 0;
    }

    /* === Responsive Columns === */
    .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        display: flex;
        flex-wrap: wrap;
    }

    .page-column {
        padding: 1rem;
        box-sizing: border-box;
    }

    .page-col-2 {
        width: 16.666%;
    }

    .page-col-3 {
        width: 25%;
    }

    .page-col-6 {
        width: 50%;
    }

    .page-col-12 {
        width: 100%;
    }

    @media screen and (max-width: 767px) {

        .page-col-2,
        .page-col-3,
        .page-col-6 {
            width: 100%;
        }

        .trusted-logo {
            margin-top: 1rem;
            margin-bottom: 2rem;
        }

        .button {
            width: 100%;
        }
    }

    /* === Text Styles === */
    .text-center {
        text-align: center;
    }

    .text-primary {
        color: #2878b6;
    }

    .text-bold {
        font-weight: bold;
    }

    /* === Inquiry Form === */
    /* Base Form Container */
    #fb-render {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 2rem;
        background-color: #ffffff;
        border-radius: 8px;
        font-family: 'Hind', sans-serif;
        color: #143c5a;
    }

    /* Heading */
    #fb-render h2 {
        font-size: 3.9rem;
        color: #000;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Subtext */
    #fb-render p {
        font-size: 1.6rem;
        color: #4a5568;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Form Labels */
    #fb-render label {
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
        color: #143c5a;
    }

    /* Form Fields */
    #fb-render input[type="text"],
    #fb-render input[type="email"],
    #fb-render input[type="tel"],
    #fb-render textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #cbd5e0;
        border-radius: 6px;
        font-size: 1.6rem;
        transition: border-color 0.2s ease;
        background-color: #f9fafb;
    }

    #fb-render input:focus,
    #fb-render textarea:focus {
        border-color: #e9b01f;
        outline: none;
        background-color: #fffef8;
    }

    /* Required Field Asterisk */
    #fb-render .fb-required {
        color: #e53e3e;
        margin-left: 0.25rem;
        font-weight: bold;
    }

    /* Tooltip */
    #fb-render .tooltip-element {
        display: inline-block;
        margin-left: 0.5rem;
        background-color: #e9b01f;
        color: white;
        font-size: 1.2rem;
        padding: 0 0.5rem;
        border-radius: 50%;
        cursor: help;
        line-height: 1.5;
    }

    /* Textarea */
    #fb-render textarea {
        resize: vertical;
        min-height: 100px;
    }

    /* Submit Button */
    #fb-render button[type="submit"] {
        background-color: #e9b01f;
        color: #143c5a;
        padding: 0.75rem 2rem;
        font-size: 1.6rem;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.2s ease;
    }

    #fb-render button[type="submit"]:hover {
        background-color: #ebb836;
    }

    #fb-render button[type="submit"]:active {
        background-color: #d9a215;
    }

    /* Responsive Layout */
    @media screen and (max-width: 480px) {
        #fb-render {
            padding: 1.5rem;
        }

        #fb-render h2 {
            font-size: 2rem;
        }

        #fb-render p {
            font-size: 1.4rem;
        }
    }

    /* === Misc === */
    .buz_logo_list {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .buz_logo_list a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100%;
        width: 15%;
        min-width: 150px;
    }

    .buz_work_with_icon {
        width: 100px;
    }

    /* === Features Integration Section === */
    .features-integration-section {
        background-color: #f8f9fa;
        padding: 80px 0;
    }

    .features-integration-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 3.5rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 1.8rem;
        color: #666;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-item {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .feature-item-icon {
        margin-bottom: 20px;
    }

    .feature-item-icon svg {
        display: block;
    }

    .feature-item-title {
        font-size: 2rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: #2878B6;
        margin-bottom: 15px;
    }

    .feature-item-description {
        font-size: 1.5rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .feature-item-link {
        color: #2878B6;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .feature-item-link:hover {
        color: #1a5580;
        text-decoration: none;
    }

    .section-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* === Related Content Section === */
    .related-content-section {
        background-color: #fff;
        padding: 80px 0;
    }

    .related-content-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .blog-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .blog-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .blog-title {
        font-size: 1.8rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .blog-title a {
        color: #222;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .blog-title a:hover {
        color: #2878B6;
    }

    .blog-date {
        font-size: 1.3rem;
        color: #999;
        margin-bottom: 15px;
    }

    .blog-excerpt {
        font-size: 1.4rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .blog-link {
        color: #2878B6;
        font-size: 1.4rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
        align-self: flex-start;
    }

    .blog-link:hover {
        color: #1a5580;
        text-decoration: none;
    }

    /* === Responsive Design === */
    @media screen and (max-width: 768px) {
        .section-title {
            font-size: 2.5rem;
        }

        .section-subtitle {
            font-size: 1.5rem;
        }

        .features-grid,
        .blog-grid {
            grid-template-columns: 1fr;
        }

        .feature-item-title {
            font-size: 1.8rem;
        }

        .blog-title {
            font-size: 1.6rem;
        }

        .features-integration-section,
        .related-content-section {
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 40px;
        }
    }

    @media screen and (max-width: 480px) {
        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1.3rem;
        }

        .feature-item,
        .blog-card {
            margin-bottom: 20px;
        }
    }

    /* === Compact Explore by Role Banner === */
    .explore-role-banner {
        background: linear-gradient(135deg, #2878B6 0%, #1a5580 100%);
        padding: 40px 0;
    }

    .explore-role-banner .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .explore-role-header {
        margin-bottom: 20px;
    }

    .explore-role-title {
        font-size: 2.4rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: white;
        margin: 0;
        text-align: center;
    }

    .explore-role-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .explore-role-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 8px;
        padding: 20px 30px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .explore-role-block:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        transform: translateY(-2px);
    }

    .explore-role-operations {
        border-left: 4px solid #E9B01F;
    }

    .explore-role-members {
        border-left: 4px solid #fff;
    }

    .explore-role-content {
        text-align: left;
        flex: 1;
    }

    .explore-role-block-title {
        font-size: 1.8rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: white;
        margin: 0 0 6px 0;
    }

    .explore-role-block-text {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
        line-height: 1.4;
    }

    .explore-role-arrow {
        font-size: 2rem;
        color: white;
        margin-left: 20px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .explore-role-block:hover .explore-role-arrow {
        opacity: 1;
        transform: translateX(5px);
    }

    @media screen and (max-width: 768px) {
        .explore-role-grid {
            grid-template-columns: 1fr;
        }

        .explore-role-block {
            padding: 18px 24px;
        }

        .explore-role-block-title {
            font-size: 1.6rem;
        }

        .explore-role-block-text {
            font-size: 1.3rem;
        }

        .explore-role-banner {
            padding: 30px 0;
        }

        .explore-role-title {
            font-size: 2rem;
        }
    }

    /* === Learn More Redesign Section === */
    .learn-more-redesign {
        background-color: #f8f9fa;
        padding: 80px 0;
    }

    .learn-more-redesign .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .learn-more-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .learn-more-card {
        background: white;
        border-radius: 8px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .learn-more-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .learn-more-icon {
        margin-bottom: 25px;
    }

    .learn-more-icon svg {
        display: block;
    }

    .learn-more-title {
        font-size: 2.2rem;
        font-family: 'Hind', sans-serif;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .learn-more-description {
        font-size: 1.5rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .learn-more-link {
        color: #2878B6;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .learn-more-link:hover {
        color: #1a5580;
        text-decoration: none;
    }

    /* === Responsive Design for New Sections === */
    @media screen and (max-width: 768px) {
        .audience-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .audience-card {
            min-height: 350px;
        }

        .audience-title {
            font-size: 2.4rem;
        }

        .audience-description {
            font-size: 1.4rem;
        }

        .learn-more-grid {
            grid-template-columns: 1fr;
        }

        .learn-more-card {
            padding: 30px 25px;
        }

        .learn-more-title {
            font-size: 2rem;
        }

        .audience-section,
        .learn-more-redesign {
            padding: 60px 0;
        }
    }

    @media screen and (max-width: 480px) {
        .audience-card {
            min-height: 320px;
        }

        .audience-card-content {
            padding: 40px 20px;
        }

        .audience-title {
            font-size: 2rem;
        }

        .audience-description {
            font-size: 1.3rem;
        }

        .audience-button {
            font-size: 1.4rem;
            padding: 12px 24px;
        }

        .learn-more-title {
            font-size: 1.8rem;
        }

        .learn-more-description {
            font-size: 1.4rem;
        }
    } 