.chairman-spacing-common-spacing {
    padding: 50px 0;
}

.chairman-spacing-common-spacing .aem-Grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 33px;
}

.chairperson-connect {
    width: 44%;
}

.chairperson-common {
    width: 48%;
}

/* Outer Card Container */
.app-promo-card {
    background-color: #23589b;

    /* UPDATED: Flat on the left, rounded on the right (perfect for the right side of the screen) */
    border-radius: 40px 0px 0px 40px;

    /* Fluid dimensions to match the left card's height */
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;

    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
}

/* Update this container class */
.promo-container {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch;
    height: 100%;
}

/* Left Side (Phone) */
.promo-left {
    flex: 1 1 40%;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    /* Anchors the phone to the bottom */
    padding-top: 3rem;
    position: relative;
}

.phone-mockup {
    max-width: 80%;
    height: auto;
    display: block;
    margin-bottom: 0;
}

/* Right Side (Content) */
.promo-right {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem 0 2rem;
    text-align: center;
}

/* Download Section */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-image {
    width: 180px;
    height: 180px;
    border: 8px solid #ffffff;
    /* border-radius: 8px; */
    margin-bottom: 1rem;
    background-color: #ffffff;
}

.download-text {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.store-badge {
    height: 45px;
    width: auto;
}

/* Connect Section */
.connect-section {
    /* This acts like a spring, pushing the section all the way to the bottom */
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.connect-heading {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* The White Pill Container */
.social-pill {
       background-color: #ffffff;
    padding: 8px 12px 6px 12px;
    border-radius: 18px 18px 0 0;
    display: inline-block;
    margin-left: 22px;
    margin-bottom: 1px;
}

.promo-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-social-item {
    display: flex;
    align-items: center;
}

/* Vertical Dividers inside the Pill */
.promo-social-item:not(:last-child) {
    border-right: 2px solid #e0e0e0;
    padding-right: 8px;
    margin-right: 11px;
}

.promo-social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
    border-radius: 50%;
}

.promo-social-link:hover .promo-social-icon {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .chairperson-connect,.chairperson-common{
        width: 100%;
    }
    .app-promo-card {
        /* On small screens where it stacks vertically, round all 4 corners */
        border-radius: 40px;
    }

    .promo-container {
        flex-direction: column;
    }

    .promo-left {
        padding: 2rem 1rem 0 1rem;
        justify-content: center;
    }

    .phone-mockup {
        max-width: 60%;
    }

    .promo-right {
        padding: 2rem 1rem 0 1rem;
    }

    .chairman-spacing-common-spacing .aem-Grid {
        flex-direction: column;
        padding: 0 15px;
    }
}