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

:root {
    /* Design Tokens - Colors */
    --color-primary-dark-blue: #002f6c;
    --color-secondary-blue: #154078;
    --color-cyan: #59cbe8;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-warm-grey: #d7d2cb;
    --color-warm-grey-darker: #6e6259;

    /* Fonts */
    --font-family:
        "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
        sans-serif;
}

.content-point,
h2,
h3,
h4 {
    scroll-margin-top: 130px;
}

#snapshot {
    scroll-margin-top: 300px;
}

.fa-house {
    font-size: 1.4em;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
}

/* Shared container styles */
.nav-container,
.hero-container,
.stats-container,
.snapshot-wrapper,
.health-equity-container,
.government-role-container,
.roadmap-cta-container,
.cta-simple-container,
.research-title-container,
.research-content-container,
.map-container,
.disclaimer-section {
    max-width: 1440px;
    margin: 0 auto;
}

/* Shared rounded image wrapper styles */
.hero-image-wrapper,
.snapshot-card,
.health-equity-image-wrapper,
.government-role-image-wrapper {
    border-radius: 32px;
    overflow: hidden;
}

/* Typography */
sup {
    font-size: 10.32px;
    vertical-align: super;
    line-height: 0;
}

/* Navigation */
.navigation {
    background-color: var(--color-white);
    padding: 12px 48px;
    margin-right: -24px; /* Bring into line with right column, allow bg to go past right col */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navigation a.home {
    position: absolute;
    left: 18px;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
}

.nav-buttons {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
}

.nav-button {
    background-color: var(--color-white);
    color: var(--color-primary-dark-blue);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

/*.nav-button:last-child {
    padding-right: 0;
}*/

.nav-button:hover {
    background-color: rgba(0, 47, 108, 0.05);
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--color-warm-grey);
    padding: 24px;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.mobile-navigation .mobile-nav-title,
#desktopHomeButton,
#tabletHomeButton {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-navigation.visible,
#desktopHomeButton.visible,
#tabletHomeButton.visible {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-color: var(--color-warm-grey);
}

.mobile-navigation.visible .mobile-nav-title,
#desktopHomeButton.visible,
#tabletHomeButton.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-nav-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: var(--color-primary-dark-blue);
    text-align: left;
}

.mobile-nav-title span {
    display: block;
}

a.link-button {
    text-decoration: none;
}

.mobile-nav-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    width: 42px;
    height: 30px;
}

.hamburger-bar {
    display: block;
    width: 42px;
    height: 6px;
    background-color: var(--color-primary-dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger-bar:nth-child(1) {
    top: 0;
}

.hamburger-bar:nth-child(2) {
    top: 12px;
}

.hamburger-bar:nth-child(3) {
    top: 24px;
}

/* Hamburger to Cross transformation */
.mobile-nav-hamburger.active .hamburger-bar:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}

.mobile-nav-hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-hamburger.active .hamburger-bar:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--color-warm-grey);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 65px 0 0 59px;
}

.mobile-menu-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    text-decoration: none;
    padding: 12px 24px;
    transition: opacity 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-menu-cta {
    padding: 0 0 0 45px;
    margin-top: 72px;
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-dark-blue);
    color: var(--color-white);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    padding: 12px 24px;
    border-radius: 32px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--color-secondary-blue);
}

.mobile-menu-btn i {
    font-size: 20px;
    transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
    padding: 0 48px;
    background-color: var(--color-white);
}

.hero-container {
    position: relative;
    height: 720px;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 1117px;
    height: 800px;
}

.hero-image {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    overflow: hidden;
    position: relative;
    bottom: 515px;
}

.hero-logos {
    position: absolute;
    bottom: 71px;
    right: 31px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.logo-care {
    width: auto;
    height: 50px;
}

.logo-alexion {
    width: 202.55px;
    height: 55.42px;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 149px;
    width: 774px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

.hero-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 6px 12px 6px 24px;
}

.btn span {
    flex-shrink: 0;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon i {
    font-size: 20px;
}

.btn-primary {
    background-color: var(--color-primary-dark-blue);
    color: var(--color-white);
}

.btn-primary .btn-icon {
    background-color: var(--color-secondary-blue);
}

.btn-primary:hover {
    background-color: var(--color-secondary-blue);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary-dark-blue);
}

.btn-secondary .btn-icon {
    background-color: rgba(215, 210, 203, 0.2);
}

.btn-secondary .btn-icon-arrow i {
    transform: rotate(90deg);
}

.mobile-btn:hover .mobile-btn-icon,
.mobile-btn:hover .mobile-btn-icon-arrow,
.btn:hover .btn-icon,
.btn:hover .btn-icon-arrow {
    background-color: var(--color-cyan);
}

.mobile-btn .file-arrow-down,
.btn .file-arrow-down {
    display: block;
}

.mobile-btn .file-arrow-down-reverse,
.btn .file-arrow-down-reverse {
    display: none;
}

.mobile-btn:hover .file-arrow-down,
.btn:hover .file-arrow-down {
    display: none;
}

.mobile-btn:hover .file-arrow-down-reverse,
.btn:hover .file-arrow-down-reverse {
    display: block;
}

/*.btn-secondary:hover {
    background-color: rgba(215, 210, 203, 0.3);
}*/

/* Stats Section */
.stats-section {
    background-color: var(--color-primary-dark-blue);
    padding: 200px 40px 360px;
    /*padding: 200px 48px 360px;*/
}

.stats-header {
    width: 646px;
    height: 170px;
    /*margin-bottom: 48px;*/
    grid-column: span 2;
}

.stats-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 80px;
    color: var(--color-white);
    margin: 0;
}

.stats-subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
}

.stats-grid {
    display: grid;
    /*grid-template-columns: repeat(4, 300px);*/
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-left: auto;
}

.stat-card {
    background-color: var(--color-white);
    width: 300px;
    min-height: 190px;
    max-height: 200px;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
    /*transition: all 0.3s ease;*/
}

.stat-card-content {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.stat-card-arrow {
    display: flex;
    flex-direction: row;
    height: 32px;
}

.stat-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*position: relative;*/
    height: 100%;
}

.stat-number-badge {
    min-width: 32px;
    height: 32px;
    background-color: var(--color-primary-dark-blue);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
    padding: 10px;
    /*margin-bottom: 12px;*/
}

.stat-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
    flex-grow: 1;
}

.stat-arrow {
    width: 32px;
    height: 32px;
    align-self: flex-end;
    /*transition: opacity 0.3s ease;*/
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.stat-card:hover .stat-arrow {
    opacity: 0;
    pointer-events: none;
    background-color: var(--color-cyan);
}

/* Stat Card Hover Action */
.stat-hover-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.stat-card:hover .stat-hover-action {
    opacity: 1;
    pointer-events: auto;
}

.stat-hover-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
}

.stat-hover-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-hover-icon i {
    font-size: 16px;
    color: var(--color-primary-dark-blue);
    transform: rotate(90deg);
}

/* Snapshot Section */
.snapshot-section {
    position: relative;
    background-color: rgba(215, 210, 203, 0.3);
    padding-top: 0;
}

.snapshot-wrapper {
    max-height: 658px;
    padding: 0 48px;
}

.snapshot-card {
    position: relative;
    top: -240px;
    background-color: var(--color-white);
    /*width: 1344px;
    height: 808px;*/
    display: flex;
}

.snapshot-content {
    flex: 1;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}

.snapshot-text {
    padding: 48px;
    flex-grow: 1;
}

.snapshot-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--color-primary-dark-blue);
    margin: 0 0 48px 0;
}

.snapshot-stats {
    display: grid;
    grid-template-columns: 393px 393px;
    gap: 32px;
}

.snapshot-stats-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.snapshot-stat {
    margin: 0;
}

.stat-prefix {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
    margin: 0;
}

.stat-number-large {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

.stat-suffix {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: var(--color-black);
    margin: 0;
}

.snapshot-stats-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-text-item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.stat-text-item strong {
    font-weight: 700;
}

.snapshot-cta {
    padding: 32px 48px;
    border-top: 1px solid var(--color-warm-grey);
}

.snapshot-cta .mobile-btn-secondary,
.snapshot-cta .btn-secondary {
    border: 1px solid var(--color-warm-grey);
}

.snapshot-image {
    width: 430px;
    position: relative;
    flex-shrink: 0;
}

/* Shared image styles */
.snapshot-image img,
.health-equity-image,
.government-role-image,
.research-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.snapshot-image img {
    position: relative;
}

/* Shared image caption styles */
.image-caption,
.health-equity-caption,
.government-role-caption {
    position: absolute;
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
}

/*.image-caption {
    bottom: 20;
    left: 31;
    font-size: 14px;
    text-align: right;
}*/

.image-caption,
.health-equity-caption,
.government-role-caption {
    bottom: 20px;
    right: 31px;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

/* Health Equity Section */
.health-equity-section {
    background-color: var(--color-white);
    padding: 90px 48px 60px;
}

.health-equity-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.health-equity-content {
    width: 546px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.health-equity-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

.health-equity-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
}

.health-equity-text p {
    margin: 0 0 32px 0;
}

.health-equity-text p:last-child {
    margin-bottom: 0;
}

.health-equity-image-wrapper {
    width: 660px;
    height: 440px;
    flex-shrink: 0;
    position: relative;
}

/* Government Role Section */
.government-role-section {
    background-color: var(--color-white);
    padding: 30px 48px 60px;
}

.government-role-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.government-role-image-wrapper {
    width: 660px;
    height: 502px;
    flex-shrink: 0;
    position: relative;
}

.government-role-content {
    width: 546px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.government-role-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
}

.government-role-text p {
    margin: 0 0 32px 0;
}

.government-role-text p:last-child {
    margin-bottom: 0;
}

.government-role-text-bold {
    font-weight: 700;
}

/* Roadmap CTA Section */
.roadmap-cta-section {
    background-color: var(--color-white);
    padding: 60px 48px;
}

.roadmap-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.roadmap-cta-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.roadmap-cta-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0 0 32px 0;
}

.roadmap-cta-subtitle {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

/* Main Content Section */
.main-content-section {
    padding: 60px 48px;
    background-color: var(--color-white);
}

.content-container {
    /*max-width: 1164px;*/
    max-width: 888px;
    margin: 0 auto;
}

.content-point {
    display: flex;
    gap: 58px;
    margin-bottom: 60px;
}

.point-number {
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-dark-blue);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    flex-shrink: 0;
}

.point-content {
    flex: 1;
    max-width: 774px;
}

.point-heading {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-primary-dark-blue);
    margin: 0 0 24px 0;
}

.point-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0 0 24px 0;
}

.point-text:last-child {
    margin-bottom: 0;
}

li.point-text {
    margin-left: 2em;
}

/* Testimonial Cards */
.testimonial-card {
    display: flex;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 60px;
    margin-left: 114px;
}

.testimonial-image {
    width: 318px;
    height: 368px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-image-tall {
    height: 512px;
}

.testimonial-image-medium {
    width: 317px;
    height: 461px;
}

.testimonial-content {
    background-color: var(--color-primary-dark-blue);
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 456px;
}

.testimonial-text-wrapper {
    flex-grow: 1;
}

.quote-mark {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 48px;
    color: var(--color-cyan);
    margin: 0;
    line-height: 21px;
}

.quote-close {
    margin-top: 0.5em;
}

.testimonial-quote {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
}

.testimonial-attribution {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
}

/* CTA Simple Section */
.cta-simple-section {
    padding: 60px 48px;
    background-color: var(--color-white);
}

.cta-simple-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-simple-pill {
    width: 1120px;
    background-color: var(--color-cyan);
    border-radius: 100px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.cta-simple-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: var(--color-primary-dark-blue);
    margin: 0;
    text-align: center;
}

/* Research Section */
.research-title-section {
    background-color: var(--color-white);
    padding: 90px 48px 0;
}

.research-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    color: var(--color-primary-dark-blue);
    text-align: center;
    margin: 0;
    max-width: 1002px;
}

/* Research Content Section */
.research-content-section {
    background-color: var(--color-white);
    padding: 32px 48px 120px;
}

.research-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-card {
    width: 1121px;
    background-color: var(--color-primary-dark-blue);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    gap: 24px;
}

.research-card-text {
    width: 630px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.research-card-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
}

.research-card-body {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
}

.research-card-body p {
    margin: 0 0 24px 0;
}

.research-card-body p:last-child {
    margin-bottom: 0;
}

.research-card-media {
    width: 403px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.research-card-image {
    width: 236px;
    height: 334px;
    border-radius: 16px;
    overflow: hidden;
}

.research-card-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

/* Map Section */
.map-section {
    background-color: var(--color-primary-dark-blue);
    padding: 90px 48px;
}

.map-container {
    display: flex;
    align-items: flex-start;
    /*gap: 48px;*/
}

.map-title {
    flex: 1;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
    color: var(--color-white);
    margin: 0;
}

.map-image-wrapper {
    width: auto;
    height: 733px;
    flex-shrink: 0;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Footer */
.footer {
    background-color: var(--color-white);
    padding: 0 0 32px;
}

.footer-disclaimer {
    padding: 60px 171px;
    margin-bottom: 60px;
}

.rare-disease-disclaimer p {
    font-family: var(--font-family);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    color: #002f6c;
    padding: 60px 48px 0;
}

.contact-about-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: -4em;
}

.contact-about-left {
    flex: 1;
    background-color: var(--color-cyan);
    border-top-right-radius: 32px;
    padding: 120px 48px;
}

.contact-about-left-content {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-heading {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: var(--color-primary-dark-blue);
    margin: 0;
}

.contact-enquiries {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-enquiries-label {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phone {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.contact-email {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.contact-email a {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.contact-adverse-event {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.contact-adverse-event a {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.contact-subheading {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

.contact-about-right {
    flex: 1;
    padding: 120px 48px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-about-right-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-heading {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: var(--color-primary-dark-blue);
    margin: 0 0 24px 0;
}

.about-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
}

/* References Section */
.references-section {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-warm-grey);
    padding: 48px;
}

.references-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.references-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
    width: 100%;
}

.references-text strong {
    font-weight: 700;
}

.footer-bottom {
    padding: 32px 48px;
    border-top: 1px solid var(--color-warm-grey);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-copyright {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-black);
    margin: 0;
    width: 432px;
    flex-shrink: 0;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 432px;
    flex-shrink: 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
}

.footer-legal-link {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    cursor: pointer;
    display: block;
}

.footer-legal-link:hover {
    opacity: 0.8;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.footer-logo-care {
    width: auto;
    height: 54px;
    flex-shrink: 0;
}

.footer-logo-alexion {
    width: 219px;
    height: 60px;
    flex-shrink: 0;
}

.mobile-hero-section {
    display: none;
}

.mobile-only {
    display: none;
}

.tablet-only {
    display: none;
}

.desktop-only {
    display: block;
}

.full-width-divider {
    position: relative;
    left: -5.91vw;
    width: 100vw;
    border-top: 1px solid var(--color-warm-grey);
}

/* Mobile Buttons (their container is turned on/off in media
   rules.
*/
.mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 6px 12px 6px 24px;
    line-height: normal;
}

.mobile-btn span {
    flex-shrink: 0;
}

.mobile-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-btn-icon i {
    font-size: 20px;
}

.mobile-btn-primary {
    background-color: var(--color-primary-dark-blue);
    color: var(--color-white);
}

.mobile-btn-primary .mobile-btn-icon {
    background-color: var(--color-secondary-blue);
}

.mobile-btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary-dark-blue);
    border: 1px solid var(--color-warm-grey);
}

.mobile-btn-secondary:last-child {
    margin-top: -8px;
    margin-bottom: 24px;
}

.mobile-btn-secondary .mobile-btn-icon {
    background-color: rgba(215, 210, 203, 0.2);
}

.mobile-btn-icon-arrow i {
    transform: rotate(90deg);
}

.quote-close::before {
    content: "\201D"; /* serif close quote mark */
}

.quote-open::before {
    content: "\201C"; /* serif open quote mark */
}

@media (max-width: 1400px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1205px) {
    .desktop-only {
        display: none !important;
    }

    .tablet-only {
        display: block;
    }

    /* Hero Section */
    .hero-section {
        padding: 0;
        position: relative;
        z-index: 2;
    }

    .hero-container {
        height: 800px;
        position: relative;
        width: 100%;
        padding: 48px;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 798px;
        overflow: hidden;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        background-image: url("assets/images/hero-bg.jpg");
        background-repeat: no-repeat;
        background-size: 140%;
        background-position: -170px -520px;
    }

    .hero-image {
        display: none;
        position: absolute;
        left: 0;
        top: -619px;
        width: 1301px;
        height: 1536px;
        object-fit: cover;
        object-position: 50% 50%;
    }

    .hero-image-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 800px;
        background: linear-gradient(
            to bottom,
            rgba(0, 47, 108, 0),
            rgba(0, 0, 0, 0.3)
        );
    }

    .hero-logos {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 28.3px;
        z-index: 3;
    }

    .logo-care {
        width: auto;
        height: 50px;
    }

    .logo-alexion {
        width: 202.555px;
        height: 55.418px;
    }

    .hero-content {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 32px;
        padding: 48px;
        display: flex;
        flex-direction: column;
        gap: 60px;
        z-index: 2;
        position: relative;
        width: auto;
        text-align: center;
        top: 10px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        gap: 24px;
        color: var(--color-primary-dark-blue);
    }

    .hero-title {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 80px;
        line-height: 80px;
        color: var(--color-primary-dark-blue);
        margin: 0;
    }

    .hero-subtitle {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 20px;
        line-height: normal;
        color: var(--color-primary-dark-blue);
        margin: 0;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 24px;
    }

    .stat-card {
        min-height: 160px;
    }

    .stats-section {
        padding-top: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-header {
        text-align: center;
        width: auto;
    }

    .snapshot-wrapper {
        max-height: none;
    }

    .snapshot-card {
        width: 100%;
        height: auto;
        flex-direction: column;
        top: -200px;
    }

    .snapshot-image {
        width: 100%;
        height: 249px;
        background-image: url("assets/images/children-playing-in-field-1.jpg");
        background-size: 100%;
        background-position: 0px -12vw;
        background-repeat: no-repeat;
    }

    .snapshot-image img {
        display: none;
    }

    .image-caption {
        bottom: 30px;
        right: 30;
        color: var(--color-white);
    }

    .snapshot-stats {
        grid-template-columns: 45% 45%;
        justify-content: space-between;
    }

    .health-equity-section {
        position: relative;
        top: -150px;
    }

    .government-role-section {
        margin-top: -180px; /* Offsets the -150 top on health-equity-section */
    }

    .health-equity-container,
    .government-role-container {
        display: block;
    }

    .health-equity-content,
    .government-role-content {
        width: 100%;
    }

    .health-equity-image-wrapper,
    .government-role-image-wrapper {
        height: 300px;
        width: 100%;
        margin-top: 24px;
    }

    .health-equity-image-wrapper {
        background-image: url("assets/images/health-equity.jpeg");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 0;
    }

    .government-role-image-wrapper {
        background-image: url("assets/images/government-role.jpeg");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: 0 0;
    }

    .health-equity-image-wrapper img,
    .government-role-image-wrapper img {
        display: none;
    }

    .mobile-snapshot-cta {
        display: flex;
        gap: 1em;
        justify-content: center;
    }

    .mobile-btn-secondary:last-child {
        margin: 0;
    }

    .testimonial-card {
        flex-direction: row;
    }

    .testimonial-image,
    .testimonial-image-tall,
    .testimonial-image-medium {
        width: 50%;
        height: auto;
    }

    .testimonial-content {
        min-width: initial;
    }

    .cta-simple-pill {
        flex-direction: column;
        gap: 24px;
        border-radius: 32px;
    }

    .main-content-section {
        padding-bottom: 0;
    }

    .cta-simple-section {
        padding: 0 48px;
    }

    .research-content-section {
        padding-bottom: 32px;
    }

    .research-title-section {
        padding-top: 24px;
    }

    .research-card {
        flex-direction: column;
    }

    .research-card-text,
    .research-card-media {
        width: 100%;
    }

    .research-card-media {
        flex-direction: row;
    }

    .research-card-buttons {
        width: 57%;
    }

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

    .contact-about-content {
        flex-direction: column;
    }

    .footer-logos {
        justify-content: flex-start;
    }
}

@media (max-width: 870px) {
    .navigation a.home {
        position: static;
    }
    .stat-arrow {
        opacity: 0;
        pointer-events: none;
    }

    .stat-hover-action {
        opacity: 1;
        pointer-events: auto;
    }

    .stat-hover-icon {
        background-color: rgba(215, 210, 203, 0.2);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 800px) {
    .desktop-only,
    .tablet-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-navigation {
        display: block;
    }

    body {
        padding-top: 78px;
    }

    .navigation {
        padding: 12px 24px;
    }

    .nav-buttons {
        flex-wrap: wrap;
    }

    .hero-section {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats-section {
        padding: 100px 24px 180px;
    }

    .stats-grid {
        /*grid-template-columns: 1fr;*/
        display: flex;
        flex-direction: column;
        margin-bottom: 1em;
    }

    .snapshot-card {
        top: -150px;
    }

    .stat-card {
        width: 100%;
    }

    .stat-card-content {
        align-items: center;
    }

    .snapshot-wrapper {
        padding: 0 24px;
    }

    .snapshot-section {
        padding-bottom: 2em;
    }

    .snapshot-cta {
        padding: 48px 0 14px;
        border-top: none;
    }

    .snapshot-cta .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        top: 0;
    }

    .mobile-snapshot-cta {
        padding: 32px 0 24px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .snapshot-title {
        font-size: 32px;
        line-height: 32px;
    }

    .snapshot-image {
        background-position: 0 -10vw;
    }

    .main-content-section {
        padding: 60px 24px;
    }

    /* Quote Cards (repeat from small mobile) */
    .testimonial-card {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-bottom: 32px;
    }

    .testimonial-image,
    .testimonial-image-tall,
    .testimonial-image-medium {
        width: 100%;
        height: auto;
        aspect-ratio: 345 / 300;
    }

    .testimonial-content {
        padding: 32px;
        min-width: auto;
    }

    .content-point {
        flex-direction: column;
        gap: 24px;
    }

    .research-card-media {
        flex-direction: column;
    }

    .research-card-buttons {
        width: 100%;
    }

    .map-image-wrapper {
        height: auto;
    }

    .contact-about-content {
        flex-direction: column;
    }

    .contact-about-left,
    .contact-about-right {
        width: 100%;
    }

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

    /* Rules for mobile-specific markup */
    .mobile-hero-section {
        display: block;
        position: relative;
        top: 6px; /*Account for white section at the bottom of the hero image */
        width: 100%;
        background-color: var(--color-white);
    }

    .mobile-hero-content {
        position: relative;
        z-index: 2;
        /*padding: 32px 24px 60px;*/
        padding: 0 24px 60px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-hero-text {
        display: flex;
        flex-direction: column;
        gap: 24px;
        color: var(--color-primary-dark-blue);
    }

    .mobile-hero-title {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 32px;
        line-height: 32px;
        color: var(--color-primary-dark-blue);
        margin: 0.8em 0 0 0;
        scroll-margin-top: 100px;
    }

    .mobile-hero-subtitle {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        line-height: normal;
        color: var(--color-primary-dark-blue);
        margin: 0;
    }

    .mobile-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        position: relative;
        top: 30px;
    }

    /* Hero Background Image */
    .mobile-hero-bg {
        position: relative;
        width: 100%;
        height: 294px;
        overflow: hidden;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        margin-top: -179px;
    }

    .mobile-hero-bg-image {
        position: absolute;
        top: -94px;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: 50% 50%;
    }

    .mobile-hero-gradient {
        position: absolute;
        top: 0;
        width: 100%;
        height: 300px;
        background: linear-gradient(
            to bottom,
            rgba(0, 47, 108, 0),
            rgba(0, 0, 0, 0.3)
        );
    }

    .mobile-hero-logos {
        position: absolute;
        bottom: calc(50% - 100.8px);
        left: 50%;
        transform: translate(-50%, 50%);
        display: flex;
        align-items: flex-end;
        gap: 20.641px;
        width: 220px;
    }

    .mobile-logo-care {
        width: auto;
        height: 36px;
    }

    .mobile-logo-alexion {
        width: 147.742px;
        height: 40.421px;
    }
}

@media (max-width: 600px) {
    .cta-simple-pill .btn-primary {
        display: flex;
        justify-content: center;
        width: 70vw;
    }
}

@media (max-width: 430px) {
    .btn {
        padding-left: 24px;
    }

    .desktop-only,
    .tablet-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    body {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero-section {
        display: none;
    }

    .stats-section {
        background-color: var(--color-primary-dark-blue);
        padding: 24px 24px 78px;
    }

    .stats-container {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .stats-header {
        text-align: center;
        width: 100%;
        height: auto;
        grid-column: auto;
    }

    .stats-title {
        font-size: 24px;
        line-height: 24px;
        margin: 0 0 0 0;
    }

    .stats-subtitle {
        font-size: 20px;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-left: 0;
    }

    .stat-card {
        width: 100%;
        min-height: auto;
        max-height: none;
        padding: 12px;
    }

    .stat-number-badge {
        margin-bottom: 0;
    }

    .stat-text {
        flex-grow: 0;
    }

    /*.stat-arrow {
        position: static;
    }*/

    .stat-arrow,
    .stat-hover-action {
        bottom: 12px;
        right: 12px;
    }

    /* Snapshot Section */
    .snapshot-section {
        position: relative;
        background-color: transparent;
        width: 100%;
        margin-top: -30px;
        padding-top: 0;
    }

    .snapshot-wrapper {
        padding: 0;
        max-height: none;
    }

    .snapshot-card {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .snapshot-content {
        max-width: 100%;
        padding: 24px 24px 0;
    }

    .snapshot-text {
        padding: 0;
    }

    .snapshot-title {
        font-size: 32px;
        line-height: 32px;
        margin: 0 0 32px 0;
    }

    .snapshot-stats {
        display: flex;
        flex-direction: column;
        gap: 32px;
        grid-template-columns: 1fr;
    }

    .snapshot-stats-left,
    .snapshot-stats-right {
        gap: 32px;
    }

    .stat-number-large {
        font-size: 48px;
    }

    .snapshot-cta {
        padding: 48px 0 14px;
        border-top: none;
    }

    .snapshot-cta .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        top: 0;
    }

    .snapshot-image {
        position: relative;
        width: 100%;
        height: 420px;
        flex-shrink: 1;
        background-image: url("assets/images/snapshot-image.jpg");
        background-size: 184%;
        background-position: -230px -78px;
        background-repeat: no-repeat;
    }

    .snapshot-image img {
        position: absolute;
        top: -73px;
        left: -225px;
        width: 748px;
        height: 420px;
        display: none;
    }

    .mobile-snapshot-cta {
        padding: 32px 0 24px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .image-caption {
        position: absolute;
        bottom: 179px;
        right: 31;
        color: var(--color-warm-grey-darker);
    }

    /* Health Equity Section */
    .health-equity-section {
        padding: 24px;
    }

    .health-equity-container {
        flex-direction: column;
        gap: 24px;
    }

    .health-equity-content {
        width: 100%;
        gap: 32px;
    }

    .health-equity-title {
        font-size: 24px;
    }

    .health-equity-text {
        font-size: 14px;
    }

    .health-equity-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 4096 / 2731;
    }

    /* Government Role Section */
    .government-role-section {
        padding: 30px 24px 24px;
    }

    .government-role-container {
        flex-direction: column;
        gap: 24px;
    }

    .government-role-content {
        width: 100%;
        gap: 60px;
        align-items: flex-end;
    }

    .government-role-text {
        font-size: 14px;
        width: 100%;
    }

    .government-role-image-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 2831 / 2154;
    }

    /* Roadmap CTA Section */
    .roadmap-cta-section {
        padding: 32px 24px;
    }

    .roadmap-cta-content {
        gap: 48px;
    }

    .roadmap-cta-heading {
        text-align: center;
    }

    .roadmap-cta-title {
        font-size: 32px;
        margin: 0 0 32px 0;
    }

    .roadmap-cta-subtitle {
        font-size: 24px;
    }

    /* Main Content Section - All 10 Points */
    .main-content-section {
        padding: 24px;
    }

    .content-container {
        max-width: 100%;
    }

    .content-point {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .point-content {
        max-width: 100%;
    }

    .point-heading {
        font-size: 20px;
    }

    .point-text {
        font-size: 14px;
    }

    /* Quote Cards */
    .testimonial-card {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-bottom: 32px;
    }

    .testimonial-image,
    .testimonial-image-tall,
    .testimonial-image-medium {
        width: 100%;
        height: auto;
        aspect-ratio: 345 / 300;
    }

    .testimonial-content {
        padding: 32px;
        min-width: auto;
    }

    .quote-mark {
        font-size: 48px;
        line-height: 0;
    }

    .quote-close {
        margin-bottom: 24px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .testimonial-attribution {
        font-size: 12px;
        width: 269px;
    }

    /* Simple CTA Section */
    .cta-simple-section {
        padding: 24px;
    }

    .cta-simple-container {
        width: 100%;
    }

    .cta-simple-pill {
        width: 100%;
        padding: 48px 5px;
        border-radius: 32px;
        flex-direction: column;
        gap: 48px;
    }

    .cta-simple-pill .btn-primary {
        width: 90%;
    }

    .cta-simple-title {
        font-size: 24px;
        padding: 0 48px;
        width: 100%;
    }

    /* Disclaimer Section */
    .disclaimer-section {
        padding: 24px 24px 0;
    }

    .rare-disease-disclaimer p {
        font-size: 24px;
        padding: 0;
        text-align: center;
    }

    /* Research Section */
    .research-title-section {
        padding: 90px 24px 0;
    }

    .research-title {
        font-size: 48px;
    }

    /* Research Content Section */
    .research-content-section {
        padding: 32px 24px 40px;
    }

    .research-card {
        width: 100%;
        padding: 48px 24px 24px;
        flex-direction: column;
        gap: 24px;
    }

    .research-card-text {
        width: 100%;
    }

    .research-card-title {
        font-size: 20px;
    }

    .research-card-body {
        font-size: 14px;
    }

    .research-card-media {
        width: 100%;
        gap: 32px;
        flex-direction: column;
    }

    .research-card-image {
        width: 236px;
        height: 334px;
    }

    .research-card-buttons {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        width: 100%;
    }

    /* Map Section */
    .map-section {
        padding: 32px 24px;
    }

    .map-container {
        flex-direction: column;
        gap: 24px;
    }

    .map-title {
        font-size: 32px;
    }

    .map-image-wrapper {
        width: auto;
        height: 418px;
    }

    .map-image {
        height: auto;
    }

    /* Contact and About Section */
    .contact-about-content {
        flex-direction: column;
        margin-top: -48px;
    }

    .contact-about-left {
        padding: 60px 24px;
        border-top-right-radius: 32px;
    }

    .contact-about-left-content {
        max-width: 100%;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-subheading {
        font-size: 24px;
    }

    .contact-about-right {
        padding: 60px 24px 24px;
    }

    .contact-about-right-content {
        width: 100%;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-text {
        font-size: 14px;
    }

    /* References Section */
    .references-section {
        padding: 24px;
    }

    .references-text {
        font-size: 12px;
    }

    /* Footer Section */
    .footer {
        padding: 0 0 24px;
    }

    .footer-disclaimer {
        padding: 60px 24px;
        margin-bottom: 60px;
    }

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

    .footer-copyright {
        font-size: 12px;
        width: 100%;
        max-width: 100%;
    }

    .footer-legal-links {
        width: 100%;
    }

    .footer-logos {
        gap: 32px;
        width: 100%;
        align-items: flex-end;
    }

    .footer-logo-care {
        width: auto;
        height: 43px;
    }

    .footer-logo-alexion {
        width: auto;
        height: 48px;
    }
}
