* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(ellipse at center, #3d5f8f 0%, #2d4a7c 50%, #1a2f5c 100%);
    color: #FFFFFF;
    width: 100%;
    overflow-x: hidden;
    background-image: url(../images/gradient.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.bg-wrapper {
    padding-bottom: 64px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Nav Bar */
.nav-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    width: 100%;
}

.nav-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-style: italic;
    color: #FFFFFF;
    background-repeat: no-repeat;
}

.explore-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.explore-button span {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.explore-icon {
    width: 26px;
    height: 26px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    transform: rotate(0deg);
}

.nav-line {
    width: 100%;
    height: 0;
    border: 1px solid #FFFFFF;
    margin-bottom: 32px;
}

/* Header Section */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 32px;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
}

.vip-lockup {
    width: 350px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-lockup svg {
    width: 100%;
    height: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 276px;
    gap: 16px;
    width: 100%;
}

.hero-title {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 40px;
    font-style: normal;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-description {
    width: 648px;
}

.hero-description p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
    letter-spacing: -0.16px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero-description p:last-of-type {
    margin-bottom: 0;
}

/* Content Box */
.content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 28px 48px;
    gap: 36px;
    width: 100%;
    max-width: 1440px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
    border-radius: 32px 0;
    margin: 32px 0;
}

/* Product Menu */
.product-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1384px;
}

a.download-button:hover, button:hover, .learn-more-button:hover {
    background-color: #FFEEE5;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.20);
}

a.download-button:hover span, button:hover span, .learn-more-button:hover span {
    color: #154898;
}

.menu-title {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
    text-align: center;
    color: #001446;
}

.tabs-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.product-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    width: 180px;
    max-width: 300px;
    height: 38px;
    gap: 28px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
    border-radius: 64px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.product-button span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    line-height: 1em;
    text-align: center;
    color: #154898;
}

.product-button.active {
    background: #BE531C;
}

.product-button.active span {
    color: #FFFFFF;
}

/* Section Title */
.section-title {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 28px;
    font-style: normal;
    line-height: 34px;
    text-align: center;
    color: #001446;
    width: 100%;
    max-width: 1384px;
}

/* Tab Content */
.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

/* Comparison Container */
.comparison-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 110px;
    width: 100%;
    max-width: 1384px;
    position: relative;
    padding-left: 0;
    overflow: visible;
}

.comparison-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.arrow-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    pointer-events: none;
}

.arrow-container img {
    width: 110px;
    height: 85px;
}

.arrow-container.horizontal {
    left: 374px; /* Start at the end of before-column */
    margin-left: 0; /* Position in the gap */
    transform: translateX(0);
}

#vasopressin .arrow-container.horizontal, #nexterone .arrow-container.horizontal, #myxredlin .arrow-container.horizontal {
    left: 347px;
}

#cardene .arrow-container.horizontal {
    left: 357px
}

    /* Position each arrow at the center of its corresponding row */
.arrow-container.horizontal[data-arrow-row="1"] {
    top: calc(40px + 141px);
}

.arrow-container.horizontal[data-arrow-row="2"] {
    top: calc(40px + 141px + 382px + 1px);
}

.arrow-container.horizontal[data-arrow-row="3"] {
    top: calc(40px + 141px + 382px + 1px + 382px + 1px);
}

/* For 2-row layouts (Vasopressin, Nexterone, Cardene) */
#vasopressin .arrow-container.horizontal[data-arrow-row="2"],
#nexterone .arrow-container.horizontal[data-arrow-row="2"],
#cardene .arrow-container.horizontal[data-arrow-row="2"] {
    top: calc(40px + 141px + 382px + 1px);
}

.arrow-container.vertical {
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.arrow-container.vertical img {
    transform: rotate(90deg);
}

/* Before Column */
.before-column {
    display: flex;
    flex-direction: column;
    width: 33%;
    max-width: 409px;
    flex-shrink: 0;
    border: 1px solid #54585A;
    border-radius: 16px 0px 16px 0px;
    height: fit-content;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.before-column .label-image-container {
    background-color: #FFFFFF;
    position: relative;
}

.before-column .label-image-container img {
    max-width: 130%;
    position: absolute;
    z-index: 1;
    left: -25px;
}

#zosyn .label-image-container img {
    position: relative;
    left: 40px;
    max-width: 115%;
}

#cardene .after-image-section img.first {
    position: relative;
    top: -40px;
}

#zosyn .after-image-section img {
    position: relative;
    top: -30px;
}

.after-column .after-image-section img {
    /* max-width: 100%; */
    max-width: 686px;
}

.column-label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    min-height: 40px;
    height: 40px;
    flex-shrink: 0;
}

.before-column .column-label {
    border-radius: 15px 0px 16px 0px;
    background: #54585A;
}

.after-column .column-label {
    border-radius: 16px 0px 16px 0px;
    background: linear-gradient(90deg, #009FDA 0%, #001446 100%);
}

.column-label span {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.label-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
	height: 380px;
}

.label-image-container:last-of-type {
    border-radius: 0 0 30px;
}

.label-placeholder {
    width: 280px;
    height: 180px;
    background: #E5E7EB;
    border: 2px dashed #9CA3AF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
}

.column-divider {
    width: 100%;
    height: 0;
    border: 0.5px solid #54585A;
}

/* After Column */
.after-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    background: #F5F5F5;
    border-radius: 16px 0;
    height: fit-content;
}

.after-image-section {
    position: relative;
    height: 380px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 8px 16px;;
    width: 100%;
}

.new-label-placeholder {
    width: 380px;
    height: 200px;
    background: #E5E7EB;
    border: 2px dashed #9CA3AF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
}

.upcoming-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    width: 236px;
    height: 76px;
    background: #BE531C;
    border-radius: 16px 0;
}

.upcoming-badge span {
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 40px;
    font-style: normal;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

/* HR Separator */
hr {
    width: 100%;
    height: 1px;
    background: #154898;
    border: none;
    margin: 0 auto;
}

hr.mobile {
    display: none;
}

/* Download Section */
.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 1384px;
}

.download-title {
    font-family: 'Saira Semi Condensed';
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #001446;
}

.download-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 8px 32px;
    gap: 16px;
    width: 290px;
    height: 42px;
    background: #BE531C;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
    border-radius: 64px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.download-button:active img, .download-button:hover img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(45%) saturate(3325%) hue-rotate(203deg);
}

.download-button span {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}

.download-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.download-icon img {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.prescribing-info {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #000000;
    margin-top: 14px;
}

.prescribing-info a {
    color: #154898;
    text-decoration: underline;
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px;
    gap: 32px;
    width: 648px;
    border: 1px solid #FFFFFF;
    border-radius: 32px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.cta-title {
    font-family: 'Saira Semi Condensed';
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
}

.cta-subtitle {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.cta-subtitle strong {
    font-weight: 700;
}

.learn-more-button {
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 32px;
    gap: 32px;
    width: 290px;
    height: 42px;
    background: #FFFFFF;
    border-radius: 64px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.learn-more-button span {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #154898;
    flex-grow: 1;
}

.learn-more-icon {
    width: 26px;
    height: 26px;
    border: 2px solid #154898;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #154898;
    font-size: 12px;
    transform: rotate(0deg);
}

.mobile-product-section .desktop, .after-image-section .desktop {
    display: block;
}

.mobile-product-section .mobile, .after-image-section .mobile {
    display: none;
}

/* Footer */
.footer {
    width: 100%;
    background: #001446;
    padding: 31px 0;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 135px;
}

.footer-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 20.625px;
    line-height: 30px;
    letter-spacing: -0.12px;
    color: #FFFFFF;
    margin-bottom: 34px;
}

.footer-description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #B3B3B3;
    margin-bottom: 54px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 10.875px;
    line-height: 22px;
    color: #B3B3B3;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.footer-copyright {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #B3B3B3;
    text-align: right;
}

.footer-copyright.mobile {
    display: none;
}

.footer-id {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #B3B3B3;
}

/* Hide mobile sections on desktop */
.mobile-product-section {
    display: none;
}

@media screen and (max-width: 1280px) {
    #vasopressin .after-column .after-image-section img {
        max-width: 600px;
    }
}

@media screen and (max-width: 1200px) {
    .nav-content {
        padding: 0 32px;
    }
    .after-image-section {
        align-items: center;
    }

    .before-column .label-image-container img {
        left: -20px;
    }

    #vasopressin .after-column .after-image-section img {
        max-width: 600px;
        left: -15px
    }

    #zosyn .label-image-container img {
        left: 25px;
    }

    .upcoming-badge {
        width: 200px;
        height: 60px
    }
}

@media screen and (max-width: 1100px) {
    #vasopressin .after-column .after-image-section img {
        max-width: 100%;
    }
    .before-column .label-image-container img {
        z-index: 1;
        max-width: 120%;
        position: absolute;
        z-index: 1;
        left: 0px;
    }

    .before-column .label-image-container img {
        max-width: 125%;
        position: absolute;
        z-index: 1;
        left: -27px;
    }

    .after-column .after-image-section img {
        max-width: 90%;
        position: relative;
        top: -5%;
        right: 0%;
        margin-left: 0;
    }

    #zosyn .after-column .after-image-section img {
        top: -5%;
        right: -5%;
    }

    #zosyn .label-image-container img {
        max-width: 120%;
        left: 35px;
    }

    #cardene .before-column .label-image-container img,
    #myxredlin .before-column .label-image-container img,
    #nexterone .before-column .label-image-container img,
    #vasopressin .before-column .label-image-container img {
        left: -15px
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    .tabs-container {
        max-width: 750px;
    }
}

@media screen and (max-width: 1000px) {
    .before-column .label-image-container img {
        max-width: 125%;
        left: -0;
    }
    #cardene .before-column .label-image-container img {
        max-width: 120%;
    }
    #zosyn .label-image-container img {
        max-width: 120%;
        left: 35px;
    }
}

@media screen and (max-width: 900px) {
    .before-column .label-image-container img {
        max-width: 125%;
    }
    #zosyn .label-image-container img {
        max-width: 115%;
        left: 35px;
    }
}

@media screen and (max-width: 800px) {
    .before-column .label-image-container img {
        max-width: 125%;
    }
    #zosyn .label-image-container img {
        max-width: 110%;
        left: 30px;
    }
}


@media screen and (min-width: 651px) {
    .label-image-container .mobile, .after-image-section .mobile {
        display: none;
    }

    .container-body {
        padding: 32px;
    }

    .comparison-container {
        gap: 32px;
    }

    .footer-links a {
        position: relative;
    }

    .footer-links a::after {
        content: "";
        position: absolute;
        top: 0px;
        right: -16px;
        background: #555;
        height: 22px;
        width: 2px;
    }

    .footer-links a:last-of-type:after {
        display: none;
    }
}

@media screen and (min-width: 651px) and (max-width: 1000px) {
    .label-image-container, .after-image-section {
        height: 350px;
    }
}

@media screen and (max-width: 650px) {
    body {
        background-image: url(../images/gradient-mobile.png);
    }

    #zosyn .after-image-section img {
        top: 0;
    }

    #cardene .after-image-section img {
        top: 0px;
    }

    .nav-content {
        padding: 0 32px;
    }

    .content-box {
        width: calc(100% - 64px);
    }

    .product-menu,
    .section-title,
    .comparison-container,
    .download-section {
        width: 100%;
    }
    .download-section {
        margin-top: 16px;
    }
    .comparison-container .before-column,
    .comparison-container .after-column,
    .comparison-container .arrow-container.horizontal,
    .comparison-container .arrow-container.vertical {
        display: none !important;
    }
    .before-column {
        width: 100%;
        max-width: 100%;
        min-width: 300px;
    }
    .comparison-container {
        flex-direction: column;
        gap: 20px;
    }

    .before-column,
    .after-column {
        width: 100%;
    }

    .before-column {
        margin-right: 0;
        margin-bottom: 32px;
    }

    .arrow-container.horizontal {
        display: none;
    }

    .arrow-container.vertical {
        display: flex;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .arrow-container.vertical img {
        transform: rotate(90deg);
    }

    .hero-text {
        padding: 0 50px;
    }

    .hero-description {
        width: 100%;
    }

    .final-cta {
        width: 90%;
    }
    .nav-content {
        padding: 0 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        font-size: 24px;
        width: 100px;
        height: 17px;
    }

    .vip-lockup {
        max-width: 250px;
    }

    .vip-lockup img {
        width: 100%;
    }

    .header-content {
        padding: 0 20px;
        gap: 16px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 38px;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 0;
    }

    .learn-more-button, .download-button {
        width: 100%;
        max-width: 290px;
    }

    .final-cta {
        gap: 16px;
    }

    .hero-description p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: -0.14px;
    }

    .hero-text {
        padding: 0;
    }

    .content-box {
        margin-top: 0;
        width: 100%;
        padding: 20px 15px 30px;
    }

    .tab-content.active, .content-box {
        gap: 16px;
    }

    .product-menu {
        margin-bottom: 8px;
    }

    .product-button {
        width: 90px;
        padding: 8px;
        gap: 16px;
        background: #FFF;
        font-size: 14px;
    }

    hr.mobile {
        display: block;
        margin-top: 0;
        margin-bottom: 0;
    }

    hr.desktop {
        display: none;
    }

    .product-button.active {
        background: #BE531C;
    }

    .product-button span {
        font-size: 10px;
        line-height: 14px;
    }

    .column-label span {
        font-size: 14px;
        line-height: 22px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }

    .after-image-section {
        background-color: #fff;
        height: auto;
        min-height: auto;
        padding-bottom: 60px;
        border-radius: 0 0 32px!important;
    }

    .upcoming-badge {
        padding: 4px 8px;
        width: 118px;
        height: 38px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .upcoming-badge span {
        font-size: 23px;
    }

    .cta-title {
        font-size: 24px;
        line-height: 30px;
    }

    .explore-button span {
        font-size: 10px;
        line-height: 16px;
    }

    .footer {
        padding: 20px 0;
        background-color: unset;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-title {
        color: #FFFFFF;
        font-family: 'Helvetica', sans-serif;
        font-size: 20.625px;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: -0.12px;
        margin-bottom: 8px;
    }

    .footer-description {
        color: #B3B3B3;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 27px;
    }

    .footer-copyright.mobile {
        display: block;
    }

    .footer-copyright.desktop {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-links a {
        color: #B3B3B3;
        font-family: 'Helvetica', sans-serif;
        font-size: 11.06px;
        font-weight: 400;
        line-height: 21.6px;
        text-decoration: underline;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-copyright,
    .footer-id {
        color: #B3B3B3;
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 21.6px;
        text-align: left;
    }

    .label-image-container {
        height: auto;
        min-height: auto;
        border-radius: 0 0 15px!important;
    }

    .explore-icon {
        width: 24px;
        height: 24px;
    }

    /* Reset comparison container */
    .comparison-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    /* Show and style mobile sections */
    .mobile-product-section {
        display: flex;
        flex-direction: column;
        gap: 32px;
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: visible;
        max-width: 100%;
    }

    .mobile-product-section .label-image-container {
        height: auto;
        padding: 20px;
        position: relative;
    }

    .mobile-product-section .label-image-container img {
        position: absolute;
        max-width: 280px;
        top: 0;
    }


    .mobile-product-section .desktop {
        display: none;
    }

    .after-image-section img {
        max-width: 100%;
    }

    .mobile-product-section .mobile {
        display: block;
    }

    .comparison-container hr:last-of-type {
        display: none;
    }

    .mobile-label-container {
        display: flex;
        flex-direction: column;
        background: white;
        border: 1px solid #54585A;
        border-radius: 18px 0;
    }

    #zosyn .mobile-label-container.old img {
        position: relative;
        max-width: 100%;
        left: 0;
    }

    .mobile-label-container.old img {
        position: relative;
        max-width: 100%;
        top: 20px;
        margin-top: -20px;
    }

    .mobile-label-container.old {
        height: auto;
    }

    .mobile-label-container.new {
        position: relative;
        border: unset;
        background: unset;
    }

    .mobile-label-container .column-label {
        border-radius: 16px 0;
        margin: 0;
    }

    .mobile-label-container.old .column-label {
        background: #54585A;
    }

    .mobile-label-container.new .column-label {
        background: linear-gradient(90deg, #009FDA 0%, #001446 100%);
    }

    .mobile-label-container .label-image-container,
    .mobile-label-container .after-image-section {
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

    .mobile-label-container.new .after-image-section {
        padding-bottom: 60px;
        background-color: #F5F5F5;
    }

    /* Mobile arrow */
    .mobile-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: transparent;
    }

    .mobile-product-section {
        position: relative;
    }

    .mobile-arrow {
        position: absolute;
        width: 100%;
    }

    .mobile-arrow img {
        bottom: -145px;
        height: auto;
        transform: rotate(90deg);
        position: relative;
        width: 90px;
    }

    .label-image-container img {
        z-index: 1;
    }

    /* Adjust upcoming badge for mobile */
    .mobile-label-container .upcoming-badge {
        position: absolute;
        bottom: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 4px 8px;
        width: 118px;
        height: 38px;
    }

    .mobile-label-container .upcoming-badge span {
        font-size: 23px;
    }

    .prescribing-info {
        font-size: 14px;
    }

    .mobile-arrow img {
        bottom: -16em;
    }
    .footer-description, .footer-links {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 620px) {
    .mobile-arrow img {
        bottom: -15em;
    }
}

@media screen and (max-width: 550px) {
    .mobile-arrow img {
        bottom: -13em;
    }

    .tabs-container {
        max-width: 400px;
    }
}

@media screen and (max-width: 550px) {
    .mobile-arrow img {
        bottom: -11.5em;
    }
}

@media screen and (max-width: 450px) {
    .mobile-arrow img {
        bottom: -10.5em;
    }
}

@media screen and (max-width: 400px) {
    .mobile-arrow img {
        bottom: -9em;
    }
}

@media screen and (max-width: 380px) {
    .mobile-arrow img {
        bottom: -8.5em;
    }
}

@media screen and (min-width: 651px) and (max-width: 1200px) {
    .hero-text {
        padding: 0 50px;
    }
    .before-column {
        width: 40%;
    }
    #zosyn .label-image-container img {
        position: relative;
        left: 11%;
    }
    #cardene .before-column .label-image-container img {
        left: -4%;
    }

    #myxredlin .before-column .label-image-container img,
    #vasopressin .before-column .label-image-container img {
        left: -4%;
    }
    #vasopressin .after-column .after-image-section img,
    #nexterone .after-column .after-image-section img,
    #myxredlin .after-column .after-image-section img,
    #cardene .after-column .after-image-section img {
        max-width: 120%;
    }

    .footer-content {
        padding-left: 32px;
        padding-right: 32px;
    }
}