/*================================================
Variables
================================================*/
:root {
    /* Colors */
    --primary-slate: #4c3d5a;
    --primary-orange: #fdad6c;
    --primary-peach: #f9efe8;
    --secondary-orange: #ec7500;
    --white: #ffffff;
    --black: #000000;
    --white-95: #f1f1f3;
    --grey-15: #262626;
    --grey-14: #d8dde1;
    --primary-purple: #906991;
    --primary-grey: #343434;

    /* Typography Fonts */
    --font-family-1: "Onest", sans-serif;
    --font-family-2: "Nunito Sans", sans-serif;
    --font-family-3: "Font Awesome 5 Free", sans-serif;

    /* Typography Presets (Sizes/Heights/Weights) */
    --button-font-size: clamp(1.125rem, 1vw + 0.875rem, 1.25rem);
    --button-line-height: 1.19;
    --button-font-weight: 600;

    --link-font-size: clamp(1.3125rem, 1vw + 1.0625rem, 1.5rem);
    --link-line-height: 1.19;
    --link-font-weight: 600;

    --heading-2-font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
    --heading-2-line-height: 1.19;
    --heading-2-font-weight: 700;

    --body-regular-font-size: clamp(1.125rem, 1vw + 0.875rem, 1.25rem);
    --body-regular-line-height: 1.44;
    --body-regular-font-weight: 400;

    --body-semibold-font-size: clamp(1.0625rem, 1vw + 0.8125rem, 1.125rem);
    --body-semibold-line-height: 1.55;
    --body-semibold-font-weight: 600;

    --strapline-font-size: clamp(1.125rem, 1vw + 0.875rem, 1.25rem);
    --strapline-line-height: 1.19;
    --strapline-font-weight: 600;
    --strapline-letter-spacing: 1.6px;
}

/*================================================
CSS Reset
================================================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

.container {
    max-width: 1328px;
    width: 100%;
    padding: 0 30px;
    margin-right: auto;
    margin-left: auto;
}

/*================================================
Header Custom Styles
================================================*/
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--white-95);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1778px;
    width: 100%;
    padding: 20px 30px 24px 30px;
    margin-right: auto;
    margin-left: auto;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 68px;
}

.header-mobile-toggle {
    display: none;
}

.header-menu-container {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header-menu-left {
    display: flex;
    align-items: center;
    max-width: 630px;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo-container {
    display: flex;
    align-items: center;
    max-width: 209px;
    width: 100%;
    flex-shrink: 0;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.header-mobile-logo {
    display: none;
}

.header-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    padding: 0;
    border: 1px solid transparent;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header-home-btn:hover {
    background-color: var(--white-95);
}
.header-lang-btn .dropdown-icon,
.header-home-btn span {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 530px;
    justify-content: space-between;
}

.header-nav-link {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    text-decoration: none;
    padding: 18px;
    border-radius: 8px;
}

.header-nav-link:hover {
    background-color: var(--white-95);
}

.header-nav-text {
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    line-height: 23px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.3vw, 31px);
    max-width: 540px;
    width: 100%;
}

.header-font-resize {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.header-font-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    width: 19px;
    height: 19px;
}

.header-font-icon {
    width: 24px;
    height: 24px;
}
.header-font-btn.active {
    cursor: not-allowed;
    opacity: 0.5;
}

.header-font-text-small {
    font-weight: bold;
    color: var(--black);
    font-size: 1.125rem;
}

.header-font-text-large {
    font-weight: bold;
    color: var(--black);
    font-size: 1.5rem;
}

.header-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 58px;
    border-radius: 0.375rem;
    padding: 0 5px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header-lang-btn img:not(.lang-icon, .dropdown-icon) {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
}
.header-lang-btn .lang-icon {
    width: 10px;
    height: auto;
    margin-left: 5px;
    flex: 0 0 auto;
}
.header-lang-btn .lang-code {
    font-family: var(--font-family-1);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    line-height: 23px;
    text-transform: uppercase;
    margin-left: 4px;
    flex: 0 0 auto;
}

.header-lang-btn:hover {
    background-color: var(--white-95);
}

.header-cta-btn {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    padding-left: 1.125rem;
    background-color: var(--primary-orange);
    border-radius: 50rem;
    border: none;
    box-shadow: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.footer .header-cta-btn,
.header .header-cta-btn {
    white-space: nowrap;
}

.header-cta-btn:hover .header-cta-arrow-box img {
    animation: slideRight 0.4s ease-in-out forwards;
}
.header-cta-btn:hover {
    background-color: var(--primary-slate);
    color: #fff;
}

.header-cta-text {
    color: var(--primary-slate);
    font-family: var(--font-family-1);
    font-size: var(--button-font-size, 20px);
    font-weight: var(--button-font-weight, 600);
    text-align: center;
    line-height: 23px;
}
.header-cta-btn:hover .header-cta-text {
    color: #fff;
}

.header-cta-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.header-cta-arrow {
    color: var(--primary-slate);
    font-size: 1rem;
}

/*================================================
Custom Dropdown Styles
================================================*/
.header-nav-item.dropdown {
    width: auto;
}

.custom-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    padding: 37px;
    margin-top: 30px !important;
    min-width: 355px;
}

.custom-dropdown .dropdown-item {
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    padding: 8px 0px;
    transition: all 0.2s ease;
    white-space: normal;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
    background-color: transparent;
    color: var(--primary-orange);
}
.custom-dropdown .dropdown-item.active {
    background-color: transparent;
    color: var(--black);
    font-weight: bold;
}
header .header-lang-dropdown .lang-dropdown {
    min-width: 154px !important;
    padding: 37px;
    width: 100%;
    right: 0 !important;
    left: auto !important;
}

/* Rotate chevron when dropdown is open */
.header-nav-link[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

/* Hide default bootstrap dropdown caret */
.dropdown-toggle::after {
    display: none;
}
.nobr {
    white-space: nowrap;
}

/* Desktop Hover handling */

/*================================================
Hero Banner
================================================*/
.banner-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #333333;
    background-image: url("../images/banner-bg.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 87px 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Slightly darker for contrast */
    mix-blend-mode: multiply;
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
}

.banner-title {
    font-family: var(--font-family-1);
    font-weight: 800;
    font-size: 5rem;
    line-height: 95px;
    color: var(--white);
    margin: 0;
}

.banner-title .text-orange {
    color: var(--primary-orange);
}

.banner-title .text-white {
    color: var(--white);
}

.banner-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-description p {
    font-family: var(--font-family-2);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 33px;
    color: var(--white);
    margin: 0;
}

.banner-cta-btn {
    margin-top: 10px;
}

/*================================================
Community Section
================================================*/
.community-section {
    padding: 112px 0 124px;
    width: 100%;
    background-color: var(--white);
}

.feedback-arrow-box {
    width: 16px;
    height: 16px;
}

.feedback-arrow-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feedback-banner {
    background-color: var(--primary-orange);
    border-radius: 21px;
    min-height: 289px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.feedback-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 385px;
    height: 100%;
    pointer-events: none;
}

.feedback-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-content {
    max-width: 728px;
    position: relative;
    z-index: 1;
}

.feedback-title {
    font-family: var(--font-family-1);
    font-size: 3rem;
    font-weight: 700;
    line-height: 57.12px;
    color: var(--primary-slate);
    margin: 0;
}

.feedback-title .text-white {
    color: #ffffff;
}

.feedback-btn {
    background-color: var(--primary-slate);
    border: 3px solid var(--primary-slate);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    min-width: 276px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.feedback-btn-text {
    color: #ffffff !important;
    font-family: var(--font-family-1);
}

.feedback-arrow-box {
    background-color: transparent !important;
}

.feedback-btn:hover {
    background-color: #3a2e45;
    border-color: #3a2e45;
    background-color: #fff;
    border-color: #fff;
}
.feedback-btn:hover .feedback-btn-text {
    color: #3a2e45 !important;
}
.feedback-btn:hover .feedback-arrow-box img {
    mix-blend-mode: difference;
}

.text-orange {
    color: var(--secondary-orange);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 113px;
}

.community-image {
    width: 100%;
    border-radius: 41px;
    overflow: hidden;
    position: relative;
    max-width: 585px;
    background-color: #f0f0f0;
    height: 100%;
}

.community-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.community-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.strapline {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: var(--strapline-font-size);
    line-height: var(--strapline-line-height);
    letter-spacing: var(--strapline-letter-spacing);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.resources-section .strapline {
    margin-bottom: 40px;
}

.community-title {
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: var(--heading-2-font-size);
    line-height: var(--heading-2-line-height);
    color: var(--black);
}

.community-features {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
}

.community-feature {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 3px solid #a8b5c6;
    width: 100%;
}

.community-feature:last-child {
    border-bottom: none;
}

.feature-icon-wrapper {
    width: 81px;
    height: 81px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Specific border color match from Figma context */
.community-feature:nth-child(2) .feature-icon-wrapper {
    border-color: var(--black);
}

.feature-text {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: var(--link-font-size);
    line-height: var(--link-line-height);
    color: var(--black);
    margin: 0;
}

.btn-outline {
    background-color: transparent;
    border: 3px solid var(--primary-slate);
}

.btn-outline .header-cta-text {
    color: var(--primary-slate);
}

.btn-outline:hover {
    background-color: var(--primary-slate);
}

.btn-outline:hover .header-cta-text {
    color: var(--white);
}

/*================================================
Newsletter Section
================================================*/
.newsletter-section {
    width: 100%;
    background-color: var(--primary-peach);
    padding: 59px 0px;
}

.newsletter-section .header-cta-arrow-box {
    background-color: transparent;
}

.newsletter-section .header-cta-btn:hover .header-cta-arrow-box {
    background-color: var(--white);
}

.newsletter-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.newsletter-title {
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: var(--heading-2-font-size);
    line-height: var(--heading-2-line-height);
    color: var(--primary-slate);
    margin: 0;
    max-width: 800px;
}

.newsletter-btn-wrapper {
    flex-shrink: 0;
}

.bottom-news {
    padding: 83px 0px !important;
}

/*================================================
Resources Section
================================================*/
.resources-section {
    padding: 112px 0 129px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.resources-title {
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: var(--heading-2-font-size);
    line-height: var(--heading-2-line-height);
    color: var(--primary-slate);
    margin-bottom: 40px;
}

.resources-grid,
.conversation-banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    align-items: stretch;
}

.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.resource-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #f0f0f0;
    margin-bottom: 58px;
    max-height: 306px;
}

.resource-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resource-card-title {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--primary-slate);
    margin: 0 0 40px;
}

.resource-btn-wrapper {
    margin-top: auto;
}

.resource-card .header-cta-arrow-box {
    background-color: transparent;
}

.resource-card .header-cta-btn:hover .header-cta-arrow-box {
    background-color: var(--white);
}

/*================================================
Master
================================================*/
.banner-master {
    padding: 84px 0px;
    background-color: var(--primary-peach);
}

.doted-text,
.doted-text-white {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 8%;
    text-underline-offset: 15%;
    text-underline-position: from-font;
}

.doted-text {
    text-decoration-color: #4c3d5a;
}
.tooltipsincontent,
.doted-text .tooltipsincontent {
    border-bottom: 0 !important;
}

.doted-text-white {
    text-decoration-color: #ffffff;
}

.banner-master .banner-title {
    color: var(--primary-slate);
    margin: 0;
}

.banner-master .banner-content {
    max-width: 100%;
    gap: 19px;
}

.banner-master .banner-description p {
    color: var(--black);
}

.sub-head {
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: var(--heading-2-font-size);
    line-height: var(--heading-2-line-height);
    color: var(--primary-slate);
}

.sub-head-title {
    font-weight: 600;
}

.cmn-pad {
    padding: 113px 0;
}

.cll-section .banner-description p {
    color: var(--black);
    font-size: 1.375rem;
    line-height: 29px;
}

p {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
    margin: 0;
}

.cll-section .cll-section-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cll-section .cll-section-image {
    width: 100%;
    border-radius: 41px;
}

.m-60 {
    margin: 60px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.cll-section .cll-section-image img {
    width: 100%;
    height: auto;
}
.cll-section .cll-section-image figure {
    overflow: hidden;
    border-radius: 40px;
}
.cll-section .cll-section-image figure img {
    object-fit: cover;
    object-position: center;
}

/*================================================
CLL Accordion
================================================*/
.cll-accordion-wrapper {
    max-width: 100%;
}

.btn-expand-all {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 23px;
    color: var(--secondary-orange);
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: underline;
}

.custom-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--black);
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 29px;
}

.cll-accordion-wrapper .expand-btn {
    margin-bottom: 60px;
}

.custom-accordion .accordion-item {
    border-top: 1px solid var(--grey-14);
    border-bottom: 1px solid var(--grey-14);
    margin-top: -1px;
    background: transparent;
}

.custom-accordion .accordion-button {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 35px;
    color: var(--black);
    background: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--black);
    background: transparent;
    box-shadow: none;
}

/* Custom indicator icons */
.custom-accordion .accordion-button::after {
    background-image: url("../images/accordian-plus.svg");
    transform: none;
    width: 24px;
    height: 24px;
    background-size: 24px;
}

.custom-accordion .accordion-button:not(.collapsed):after {
    background-image: url("../images/accordian-minus.svg");
    transform: none;
    height: 4px;
}

.custom-accordion .accordion-body {
    padding: 0 0 30px 0;
    font-family: var(--font-family-1);
}

.custom-accordion .accordion-body .fw-bold {
    font-weight: 600;
}

.custom-accordion .faq-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.custom-accordion .faq-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    line-height: 28px;
    color: var(--black);
}

.custom-accordion .faq-list li::before {
    content: "•";
    color: var(--secondary-orange);
    font-weight: bold;
    font-size: 1.375rem;
    position: absolute;
    left: 0;
    top: 0;
}

.custom-accordion .accordion-item:first-child {
    border-top: 0;
}

/*================================================
CLL Diagnosis
================================================*/
.cll-clr-section {
    background-color: var(--primary-peach);
}

.white-box {
    background-color: var(--white);
    padding: 30px;
    width: 100%;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.white-box .sub-head {
    color: var(--primary-purple);
    font-size: 1.375rem;
    line-height: 29px;
    margin: 0;
}

.white-box .white-box-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.white-box .white-box-content p {
    margin-bottom: 0 !important;
}

.white-box .white-box-content p {
    font-size: 1.375rem;
    line-height: 29px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-14 {
    margin-bottom: 14px;
}

.cll-faq-accordian h4 {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
}
.cll-faq-accordian ul {
    padding: 0;
    list-style: auto;
    padding-left: 28px;
    margin: 0;
}
.mental-emotional-section .cll-faq-accordian ul {
    list-style: none !important;
}
.cll-faq-accordian ul li,
.cll-faq-accordian p {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
}
.cll-faq-accordian p:not(:last-of-type) {
    margin-bottom: 14px;
}
.cll-faq-accordian .accordion-body p span.text-orange {
    font-weight: bold;
}
.cll-faq-accordian ul li::marker {
    color: var(--secondary-orange);
}
.mb-50 {
    margin-bottom: 50px;
}

.accordion-content-wrapper {
    margin-bottom: 35px;
}

.mt-60 {
    margin-top: 60px;
}

.conversation-guides .resource-image {
    border-radius: 41px;
}

.high-light {
    color: var(--secondary-orange);
}

.cll-section-content-visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.cll-section-content-visit .content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cll-section-content-visit .content h2 {
    color: var(--primary-grey);
    margin-bottom: 0;
}

.custom-icon-list li::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("../images/visit-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-icon-list li {
    position: relative;
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
    margin-bottom: 22px;
}

.custom-icon-list li:last-child {
    margin-bottom: 0;
}

.white-box-content .custom-icon-list {
    padding-left: 77px;
}

.hcp-accordion-wrapper .custom-accordion {
    counter-reset: accordion-counter;
}

.hcp-accordion-wrapper .accordion-button {
    position: relative;
    padding-left: 107px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-top: 62px;
    padding-bottom: 62px;
}

.hcp-accordion-wrapper .accordion-button:first-child {
    padding-top: 62px !important;
}

.hcp-accordion-wrapper .accordion-button::before {
    counter-increment: accordion-counter;
    content: counter(accordion-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 81px;
    height: 81px;
    border: 3px solid #4c3d5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a3f5f;
    font-weight: bold;
    font-size: 1.875rem;
    line-height: 35px;
}

.brown-box {
    background-color: var(--primary-peach);
    padding: 30px;
    width: 100%;
    border-radius: 22px;
}

.brown-box span {
    font-weight: 600;
}

.hcp-accordion-wrapper .accordion-body-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/*================================================
Clinical FAQ
================================================*/
.clinical-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: start;
}

.clinical-faq-image {
    width: 100%;
}

.clinical-faq-image img {
    border-radius: 41px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinical-faq-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.trialPhasesAccordion .cll-section-content-visit {
    gap: 75px;
}

.clinical-faq-parent .sub-head {
    margin-bottom: 14px !important;
}
.cll-add-cte .clinical-faq-content .sub-head {
    margin-bottom: 0 !important;
}
.cll-add-cte .custom-accordion .accordion-body ul.f-22 {
    list-style: disc;
}

/*================================================
Footer
================================================*/
.footer {
    background-color: var(--white);
    padding: 42px 0 0;
    width: 100%;
}

.footer .header-cta-btn {
    padding: 8px 8px 8px 16px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 300px;
}

.footer-logo-link img {
    max-width: 180px;
    height: auto;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    flex: 1;
    max-width: 825px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 200px;
}

.footer-nav-title {
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-list a {
    font-family: var(--font-family-1);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color:#EC7500;
}

/*================================================
Footer Bottom
================================================*/
.footer-bottom {
    background-color: var(--primary-slate);
    padding: 24px 0;
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 48px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.copyright-text {
    font-family: var(--font-family-1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-family: var(--font-family-1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-peach);
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100%);
        opacity: 0;
    }

    51% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/*================================================
FAQ Design specific styles
================================================*/
.hero-long-term {
    background-color: var(--primary-peach);
    padding: 84px 0;
}

.hero-long-term-text {
    font-family: var(--font-family-2);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 33px;
    color: var(--black);
    margin-bottom: 0;
}

.text-underline {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.faq-banner-image {
    border-radius: 41px;
    overflow: hidden;
}

.faq-banner-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.btn-collapse-all {
    color: var(--secondary-orange);
    border: none;
    background: none;
    font-weight: 600;
    font-family: var(--font-family-1);
    font-size: 1.25rem;
    letter-spacing: 1.6px;
    text-decoration: underline;
    text-transform: uppercase;
    padding: 0;
}

.faq-accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid #d8dde1;
    border-radius: 0;
    margin-bottom: 22px;
    background-color: transparent;
}

.faq-accordion-custom .accordion-button {
    padding: 15px 0;
    background-color: transparent;
    box-shadow: none;
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 35.7px;
    color: var(--black);
}

.faq-accordion-custom .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--black);
    box-shadow: none;
}

.faq-accordion-custom .accordion-button::after {
    background-image: url("../images/accordian-plus.svg");
}

.faq-accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("../images/accordian-minus.svg");
}

.faq-accordion-custom .accordion-body {
    padding: 15px 0 35px 0;
}

.faq-list-item {
    gap: 10px;
    margin-bottom: 20px;
}

.faq-number {
    color: var(--secondary-orange);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 29px;
    min-width: 25px;
}

.faq-answer {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
}

.bottom-story-banner-container {
    padding: 0 0 120px 0;
}

.bottom-story-banner {
    background-color: var(--primary-orange);
    border-radius: 21px;
    padding: 59px 328px 34px 69px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 297px;
}

.bottom-story-content {
    max-width: 702px;
    position: relative;
    z-index: 2;
}

.bottom-story-content h2 {
    font-family: var(--font-family-1);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-slate);
    line-height: 57.12px;
    margin-bottom: 0;
    white-space: pre-wrap;
}

.bottom-story-content h2 .text-white {
    color: var(--white);
}

.bottom-story-action {
    position: relative;
    z-index: 2;
}

.banner-cta-dark {
    background-color: var(--primary-slate);
    border: 3px solid var(--primary-slate);
    padding: 8px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.banner-cta-dark .header-cta-text {
    color: var(--white);
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.25rem;
}

.banner-cta-dark .banner-arrow-box {
    background-color: var(--white) !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-story-img {
    position: absolute;
    right: 0;
    bottom: 0px;
    max-height: 120%;
    width: 364px;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

.faq-list-ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.faq-list-ol li {
    font-family: var(--font-family-1);
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
    padding-left: 5px;
    margin-bottom: 20px;
}

.faq-list-ol li:last-child {
    margin-bottom: 0;
}

.faq-list-ol li::marker {
    color: var(--secondary-orange);
    font-weight: 600;
}

.mt-118 {
    margin-top: 118px;
}

/* Download button arrow animation */
@keyframes slideDown {
    0% {
        transform: translateY(-5px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-download:hover .header-cta-arrow-box img {
    animation: slideDown 0.4s ease-in-out forwards;
}

.clinical-outer-wrapper {
    display: flex;
    gap: 113px;
    flex-direction: column;
}

.clinical-faq-wrapper.row-reverse .clinical-faq-image {
    order: 2;
}

.clinical-faq-wrapper.row-reverse .clinical-faq-content {
    order: 1;
}

.mb-30 {
    margin-bottom: 30px;
}

.yellow-text {
    color: var(--secondary-orange);
    font-family: var(--font-family-1);
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 35.7px;
}

.gap-22 {
    gap: 22px;
    display: flex;
    flex-direction: column;
}

#endpointsAccordionLeft ul li {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: var(--black);
    margin: 0;
    list-style-type: disc;
    margin-left: 20px;
}

.locator-section-title {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 36px;
    color: var(--primary-slate);
    margin-bottom: 62px;
}

/* =============================================
Vote Table - Community Suggestion Box
============================================= */
.vote-table-wrapper {
    border-radius: 32px;
    border: 2px solid var(--color-grey-77, #c3c8c2);
    overflow: hidden;
    margin-top: 20px;
}

.vote-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family-1);
    color: var(--primary-slate);
}

.vote-table thead th {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 36px;
    padding: 22px 30px;
    border-bottom: 1px solid #d9d9d9;
    background-color: #f6f6f6;
    color: var(--black);
}

.f-30 {
    font-size: 1.875rem;
    line-height: 36px;
    font-weight: 600;
    font-family: var(--font-family-1);
}

.vote-table tbody tr {
    border-bottom: 1px solid #ececec;
}

.vote-table tbody tr:last-child {
    border-bottom: none;
}

.vote-table td {
    padding: 22px 30px;
    font-size: 1.375rem;
    line-height: 22px;
    vertical-align: middle;
}

.vote-table-post {
    text-align: left;
}

.table-head-1 {
    padding: 30px 20px 35px 114px !important;
}

.vote-table-upvotes {
    text-align: center;
    width: 140px;
}

.vote-table-posted {
    text-align: right;
    width: 140px;
    color: var(--black);
    white-space: nowrap;
}

/* Post cell with avatar */
.vote-post-cell {
    display: flex;
    align-items: center;
    gap: 28px;
}

.vote-avatar {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background-color: #7a7a7a;
    border-radius: 50%;
}

/* Upvote button */
.vote-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 0;
    background-color: #f9efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-btn:hover {
    background-color: #f0edf2;
}

.vote-btn img {
    width: 30px;
    height: 25px;
    display: block;
}

/* Voted state */
.vote-btn.voted {
    background-color: #fff5ee;
    border-color: #ffddcc;
}

.vote-btn.voted:hover {
    background-color: #ffede0;
}

/* "You voted" tooltip */
.vote-btn-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.vote-count {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-slate);
    min-width: 20px;
}

.voted-tooltip {
    background-color: #fff;
    color: var(--primary-slate);
    font-family: var(--font-family-1);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 20px;
    transform: translateX(-50%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.vote-btn-wrapper.is-voted .voted-tooltip {
    opacity: 1;
    visibility: visible;
}

.voted-tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

/* =============================================
Vote Table Responsive
============================================= */

/* =============================================
CLL Suggestion Form
============================================= */
.Suggestion-form {
    margin-top: 113px;
}

.Suggestion-form .suggestion-box {
    background: var(--white);
    border: 1px solid var(--grey-14);
    border-radius: 12px;
    padding: 40px;
    max-width: 100%;
}

.Suggestion-form .suggestion-title {
    font-size: clamp(1.5rem, 2vw + 1rem, 1.75rem);
    font-weight: 700;
    color: var(--primary-slate);
    margin-bottom: 8px;
    font-family: var(--font-family-1);
}

.Suggestion-form .suggestion-desc {
    font-size: var(--body-regular-font-size);
    color: var(--primary-grey);
    margin-bottom: 32px;
    font-weight: 400;
}

.Suggestion-form .suggestion-textarea {
    width: 100%;
    min-height: 160px;
    border: 1px solid var(--grey-14);
    border-radius: 20px;
    padding: 20px 24px;
    font-size: var(--body-regular-font-size);
    font-family: var(--font-family-1);
    color: var(--primary-slate);
    margin-bottom: 24px;
    resize: vertical;
    background: var(--white);
    transition: border-color 0.3s ease;
    box-shadow: 1px 1px 7.3px 0 rgba(0, 0, 0, 0.2) inset;
}

.Suggestion-form .suggestion-textarea:focus {
    outline: none;
    border-color: var(--primary-slate);
}

.Suggestion-form .suggestion-textarea::placeholder {
    color: var(--primary-grey);
    opacity: 0.7;
}

.Suggestion-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: var(--white);
    border: 1.5px solid var(--primary-slate);
    border-radius: 100px;
    font-weight: var(--button-font-weight);
    color: var(--primary-slate);
    cursor: pointer;
    font-size: var(--button-font-size);
    transition: all 0.3s ease;
    font-family: var(--font-family-1);
}

.Suggestion-form .btn-submit:hover {
    background: var(--primary-slate);
    color: var(--white);
}

.Suggestion-form .btn-submit:hover img {
    filter: brightness(0) invert(1);
}

.Suggestion-form .btn-icon {
    width: 18px;
    transition: all 0.3s ease;
}

.mb-62 {
    margin-bottom: 62px;
}

/*================================================
Video Stories
================================================*/
.video-stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 62px;
    row-gap: 60px;
}

.video-story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.video-story-card .video-image {
    position: relative;
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 62px !important;
    aspect-ratio: 600 / 338;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.video-story-card .video-img {
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97px;
    height: 97px;
    pointer-events: auto;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-story-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 53px !important;
    width: 100%;
    align-items: center;
}

.video-story-info .video-story-title,
.video-story-info .video-story-desc {
    margin: 0 !important;
    padding: 0 !important;
}

.video-story-title {
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 28.56px;
    color: var(--primary-slate);
}

.video-story-desc {
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 29px;
    color: #343434;
}

/*---popup---*/
#ext-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.81);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#ext-modal {
    background: #f9efe8;
    padding: 45px 28px;
    border-radius: 25px;
    max-width: 1000px;
    width: 90%;
    text-align: center;
    font-family: sans-serif;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#ext-close {
    position: absolute;
    top: 23px;
    right: 17px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

#ext-close:hover {
    opacity: 0.7;
}

#ext-message-line1 {
    margin: 10px 0 6px 0;
}

#ext-message-line1,
#ext-domain {
    color: #4c3d5a;
    text-align: start;
    font-size: 30px;
    font-weight: 600;
    max-width: 820px;
    margin: 0 auto;
    line-height: normal;
    padding-top: 40px;
}

#ext-domain {
    margin: 0 0 26px 0;
}

#ext-overlay .overlay-btn-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

#ext-overlay .overlay-btn-wrapper a {
    width: fit-content;
}

.suggestion-box-content h4 {
    font-family: var(--font-family-2);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 33px;
    color: #343434;
    margin-bottom: 30px;
}
.suggestion-table {
    border: 2px solid #c3c8c2;
    border-radius: 40px;
    width: 100%;
    overflow: hidden;
}
.suggestion-table table {
    margin-bottom: 0;
}
.suggestion-table table thead th {
    background: #f6f6f6;
    padding: 30px 20px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}
/*.suggestion-table table thead th:first-child{
width: 110px;
padding: 30px 0;
}*/
.suggestion-table table tbody td:last-child,
.suggestion-table table thead th:last-child {
    text-align: right;
}
.img-circle {
    width: 56px;
    height: 56px;
    background: #757575;
    border-radius: 9999px;
    margin: 0 auto;
    overflow: hidden;
}
.img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.suggestion-table table tbody td {
    vertical-align: middle;
    padding: 20px;
    border-bottom: 1px solid #d8dde1;
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 1.5rem;
    color: #000;
}
/*
.suggestion-table table tbody td:first-child{
padding: 30px 0;
}*/
.suggestion-table table tbody td:last-child {
    white-space: nowrap;
}
.suggestion-table table tbody td p {
    color: #4c3d5a;
    font-size: 28px;
    font-weight: bold;
}
.suggestion-table table tbody tr:last-child td {
    border-bottom: 0;
}
.upvote-btn:checked + span svg path,
.upvotes-count.voted span svg path {
    fill: #ec7500;
}
.upvote-btn:disabled + span {
    cursor: not-allowed;
}
.upvotes-count-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.upvotes-count-wrapper .upvotes-count {
    position: relative;
}
.upvotes-count-wrapper .upvotes-count input {
    opacity: 0;
    position: absolute;
    left: 0;
}
.upvotes-count-wrapper .upvotes-count span {
    width: 45px;
    height: 45px;
    background: #f9efe8;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.upvotes-count-wrapper .upvotes-count input:disabled ~ span {
    pointer-events: none;
    cursor: default;
}
.vote-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 100;
}
.vote-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}
/* .upvotes-count-wrapper .upvotes-count.voted input:disabled ~ .vote-tooltip {
    display: block !important;
} */
.suggestion-form .nf-error-required-error,
.vote-error-msg {
    color: #e80000;
    font-size: 1rem;
}
.upvotes-count.voted input[type="checkbox"] {
    cursor: not-allowed;
    pointer-events: none;
}
.suggestion-form {
    margin-top: 80px;
}
.suggestion-form h3 {
    color: #343434;
    font-size: 28px;
    font-weight: bold;
    font-family: var(--font-family-1);
    padding-left: 5px;
    margin-bottom: 20px;
}
.suggestion-form h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4c3d5a;
    line-height: 1;
    margin-bottom: 41px;
    font-family: var(--font-family-1);
}
.suggestion-form h3 .tooltipsincontent {
    border: 0;
}
.suggestion-form .nf-form-content .nf-field-label {
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 1.5rem;
    color: #343434;
    display: block;
    padding-left: 5px;
    width: 100%;
    margin-bottom: 14px;
}
.suggestion-form .nf-form-content .nf-field-label:empty {
    display: none;
}
.suggestion-form .nf-field .nf-field-element textarea {
    border: 1px solid #c3c8c2;
    border-radius: 30px;
    padding: 25px;
    font-size: 1.2rem;
    height: 220px;
    font-family: "Nunito Sans";
    border: 2px solid rgb(118, 118, 118);
}
.suggestion-form .nf-field .nf-field-element textarea:focus {
    border-color: #c3c8c2;
    box-shadow: none;
    outline: 0;
}
.suggestion-form .submit-container .nf-field-element {
    text-align: right;
}
.suggestion-form .submit-container .ninja-forms-field[type="submit"] {
    min-width: 150px;
    margin: 0;
    border: 3px solid #4c3d5a;
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    /*letter-spacing: 1.6px;*/
    font-size: clamp(18px, 1vw + 14px, 20px);
    line-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 49px 14px 16px;
    font-family: "Onest", sans-serif;
    text-align: left;
    background-image: url(/wp-content/uploads/2026/03/submit-arrow.svg);
    background-position: center right 22px;
    background-repeat: no-repeat;
    color: #4c3d5a;
    font-weight: bold;
    text-transform: capitalize;
}
.suggestion-form .submit-container .ninja-forms-field[type="submit"]:hover {
    background: #4c3d5a;
    color: #fff !important;
    background-image: url(/wp-content/uploads/2026/03/submit-arrow-white.svg);
    background-repeat: no-repeat !important;
    background-position: center right 22px;
}
.conversation-guides .cll-section-content .sub-head {
    text-align: left !important;
}
.cllmodal .modal-dialog {
    max-width: 1032px;
    padding: 0 1rem;
}
.cllmodal .modal-content {
    background: #f9efe8;
    border-radius: 30px;
    border: 0;
    box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.25);
}
.cllmodal .modal-body {
    padding: 90px 90px 55px;
}
.cllmodal .btn-close {
    width: 20px;
    height: 20px;
    border: 0;
    background: none;
    position: absolute;
    right: 50px;
    top: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.cllmodal .btn-close img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}
.cllmodal .modal-btns {
    margin-top: 60px;
    text-align: center;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cllmodal .modal-btns .header-cta-btn {
    display: inline-flex;
}
.cllmodal .modal-body p {
    font-size: clamp(1.375rem, 1.0261rem + 0.9709vw, 1.875rem);
    font-weight: bold;
    color: #4c3d5a;
    line-height: 1.15;
}
.cllmodal .modal-body h4 {
    font-size: clamp(1.625rem, 0.7963rem + 2.3058vw, 2.8125rem);
    font-weight: bold;
    color: #4c3d5a;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 25px;
}
.modal-backdrop {
    background: #ffffff;
    --bs-backdrop-opacity: 0.75;
}
p:empty {
    display: none;
}
.contact-form-wrapper .nf-field-element textarea {
    border-width: 2px;
}
.mental-emotional-accordian-image-content .accordian-left figure {
    overflow: hidden;
    border-radius: 40px;
}
.independent-resources-wrapper
    .independent-resources-btn
    .header-cta-btn
    .header-cta-text {
    text-align: left;
}
.footer-mob-menu {
    display: none !important;
}

/* tooltips */
.haspopup {
    position: relative;
}
.tooltipbody {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-size: 12px;
    display: none;
    border-radius: 10px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
    z-index: 600;
    width: fit-content;
    max-width: 450px;
    min-width: 270px;
    line-height: 1.2;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
}
.tooltipbody p {
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: normal !important;
}
.haspopup .tooltipbody::before,
.haspopup .tooltipbody::after {
    left: var(--arrow-left, 50%);
    content: "";
    position: absolute;
    border: solid transparent;
    bottom: 100%;
}
.haspopup .tooltipbody::before {
    border-width: 12px;
    margin-left: -12px;
    border-bottom-color: #fff;
    z-index: 602;
}
.haspopup .tooltipbody::after {
    border-width: 14px;
    margin-left: -14px;
    border-bottom-color: rgba(0, 0, 0, 0.08);
    z-index: 601;
}
.haspopup:hover .tooltipbody {
    display: block;
}

@media (max-width: 991px) {
    .haspopup::before {
        border-width: 10px;
        margin-left: -10px;
    }
    .haspopup::after {
        border-width: 12px;
        margin-left: -12px;
    }
    .font-increase-btn.active,
    .font-decrease-btn.active {
        opacity: 0.4; /* Makes it look grey/faded */
        cursor: not-allowed; /* Changes cursor to 'no entry' sign */
        pointer-events: none; /* Ensures it can't be clicked */
        filter: grayscale(100%); /* Optional: removes color from icons */
    }

    /* Optional: Smooth transition for the opacity change */
    .font-increase-btn,
    .font-decrease-btn {
        transition: opacity 0.3s ease;
    }
}

/* ==========================================
Media Queries Responsive Settings
========================================== */

@media (max-width: 1300px) {
    .header-row {
        gap: 40px;
    }
}

@media (max-width: 1199px) {
    .header-lang-btn img:not(.lang-icon, .dropdown-icon) {
        width: 20px;
        height: 20px;
    }
    .header-lang-btn .lang-icon {
        width: 8px;
    }
    .header-lang-btn .lang-code {
        font-size: 1rem;
        line-height: normal;
    }
    .feedback-banner {
        padding: 40px 40px;
        gap: 30px;
    }

    .feedback-title {
        font-size: 2.375rem;
        line-height: 46px;
    }

    .footer-right {
        gap: 10px;
    }

    .header-row {
        gap: 20px;
    }

    .header-nav-text {
        font-size: 1rem;
    }

    .header-cta-text {
        font-size: 1.125rem;
    }

    .header-logo-container {
        max-width: 140px;
    }

    .header-nav-link {
        padding: 10px;
    }

    .header-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 20px;
    }

    .header-left {
        column-gap: 10px;
    }
}

@media (max-width: 991px) {
    .header-nav-item.dropdown {
        width: 100%;
    }

    .custom-dropdown {
        box-shadow: none;
        padding: 0;
        margin-top: 0 !important;
        background-color: var(--white-95);
        border-radius: 8px;
        margin-bottom: 15px;
        border: none;
        margin: 10px;
    }

    .custom-dropdown .dropdown-item {
        padding: 12px 20px;
    }

    .resources-section {
        padding: 70px 0;
    }

    .banner-section {
        padding: 70px 0;
    }

    .clinical-faq-wrapper {
        grid-template-columns: 1fr;
    }

    .hcp-accordion-wrapper .accordion-button {
        padding-left: 80px;
    }

    .hcp-accordion-wrapper .accordion-button::before {
        width: 60px;
        height: 60px;
    }

    .conversation-banner-wrapper,
    .cll-section-content-visit {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-description p {
        font-size: 1.25rem;
        line-height: normal;
    }

    .banner-title {
        font-size: 4.375rem;
        line-height: 80px;
    }

    .banner-master {
        padding: 60px 0px;
    }

    .footer-right {
        max-width: 100%;
    }

    .footer .container {
        flex-direction: column;
        align-items: start;
    }

    .feedback-banner {
        padding: 40px 36px 40px;
        min-height: unset;
        gap: 28px;
    }

    .feedback-title {
        font-size: 2rem;
        line-height: 40px;
    }

    .feedback-btn {
        min-width: unset;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
        gap: 60px;
    }

    .footer-right {
        justify-content: space-between;
        width: 100%;
        gap: 40px;
    }

    .header-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* 		max-width: 360px; */
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 76px 0 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        border: 1px solid var(--white-95);
    }
    .header-mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        z-index: 1001;
        padding: 1rem 1.5rem;
    }
    .header-menu-container.active {
        right: 0;
    }

    .header-mobile-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        gap: 6px;
    }
    .header-mobile-toggle .toggle-line {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 6px;
    }
    .header-mobile-toggle .toggle-text {
        font-size: 19px;
        color: #30383f;
        font-weight: 800;
        line-height: 1;
        font-family: var(--font-family-2);
    }
    .header-mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #4c3d5a;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .header-mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .header-mobile-toggle.active .toggle-text {
        display: none;
    }

    .header-menu-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        max-width: 100%;
        border-top: 1px solid var(--white-95);
    }

    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        max-width: 100%;
    }

    .header-mobile-logo {
        display: block;
        margin-bottom: 1rem;
    }

    .header-mobile-logo img {
        max-width: 140px;
    }

    .header-nav-link {
        width: 100%;
        padding: 12px 1rem;
        border-bottom: 1px solid #bdbdbd;
        justify-content: space-between;
        border-radius: 0;
    }

    .header-nav-link:hover {
        background-color: transparent;
    }
    .header-nav-text {
        font-size: 1.125rem;
    }

    .header-nav-item.dropdown {
        width: 100%;
    }

    .dropdown-menu.custom-dropdown {
        position: static !important;
        padding: 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background-color: var(--white-95);
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        border-bottom: none;
        transform: none !important;
        background: #fff;
    }

    .header-nav-link.show {
        background: #f6f6f6;
    }
    .header .dropdown-icon {
        rotate: -90deg;
        width: 10px;
    }
    .header-lang-btn.show .dropdown-icon,
    .header-nav-link[aria-expanded="true"] .dropdown-icon {
        transform: rotate(90deg);
    }

    .custom-dropdown .dropdown-item {
        padding: 12px 1rem;
    }
    .dropdown-menu.custom-dropdown li:not(last-child) {
        border-bottom: 1px solid #bdbdbd;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        gap: 2.5rem;
        margin-top: 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cmn-pad {
        padding: 80px 0;
    }

    .m-60 {
        margin: 40px 0;
    }

    .mb-60,
    .mb-90 {
        margin-bottom: 40px;
    }

    p,
    .white-box .white-box-content p,
    .cll-section .banner-description p,
    .cll-faq-accordian p,
    .custom-icon-list li {
        font-size: 1.125rem;
        line-height: 26px;
    }

    .sub-head {
        font-size: 2rem;
        line-height: 42px;
    }

    .white-box .sub-head,
    .cll-faq-accordian h4 {
        font-size: 1.25rem;
        line-height: 28px;
    }

    .custom-accordion .accordion-button {
        font-size: 1.375rem;
        line-height: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-cta-text {
        font-size: 1rem;
    }

    .mt-50,
    .mb-50 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .accordion-content-wrapper {
        margin-bottom: 40px;
    }

    .hero-long-term-title {
        font-size: 2.5rem;
        line-height: 48px;
        margin-bottom: 150px;
    }

    .mt-118 {
        margin-top: 90px;
    }

    .bottom-story-banner {
        flex-direction: column;
        padding: 40px;
    }

    .bottom-story-content h2 {
        font-size: 2rem;
        line-height: 40px;
    }

    .bottom-story-img {
        position: relative;
        width: 100%;
        max-height: unset;
        margin-top: 20px;
    }

    .faq-accordion-custom .accordion-button {
        font-size: 1.375rem;
        line-height: 28px;
    }

    .clinical-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .clinical-faq-wrapper .clinical-faq-image,
    .clinical-faq-wrapper.row-reverse .clinical-faq-image {
        order: 1 !important;
    }

    .clinical-faq-wrapper .clinical-faq-content,
    .clinical-faq-wrapper.row-reverse .clinical-faq-content {
        order: 2 !important;
    }
    .trialPhasesAccordion
        .clinical-faq-wrapper.row-reverse
        .clinical-faq-content {
        order: 1 !important;
    }
    .extra-content .clinical-faq-wrapper.row-reverse .clinical-faq-content {
        order: 1 !important;
    }
    .extra-content .clinical-faq-wrapper.row-reverse .clinical-faq-image {
        order: 2 !important;
    }

    .suggestion-box-content h4 {
        font-size: 20px;
    }
    .suggestion-table table thead th {
        padding: 16px;
        font-size: 1.5rem;
        line-height: normal;
    }
    .suggestion-table table thead th:first-child {
        padding: 16px 0;
        /* 		width: 70px; */
        padding: 10px 20px;
    }
    .suggestion-table table tbody td p {
        font-size: 1.5rem;
    }
    .suggestion-table table tbody td {
        font-size: 1.125rem;
        padding: 16px;
    }
    .suggestion-table table tbody td:first-child {
        padding: 16px 0;
        padding: 10px 20px;
    }
    .img-circle {
        width: 46px;
        height: 46px;
    }
    .suggestion-form h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    .suggestion-form .nf-form-content .nf-field-label {
        font-size: 1rem;
        padding-left: 20px;
    }
    .suggestion-form .nf-field .nf-field-element textarea {
        padding: 20px;
        font-size: 1rem;
    }
    .header-lang-btn span,
    .header-home-btn span {
        display: block;
        font-family: var(--font-family-1);
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--black);
        white-space: nowrap;
        line-height: 23px;
    }
    .header-lang-btn > img:not(.dropdown-icon),
    .header-home-btn > img {
        display: none !important;
    }
    .header-lang-btn .dropdown-icon {
        display: block;
        width: 10px;
        height: auto;
    }
    .header-home-btn,
    .header-lang-btn {
        height: auto;
        width: 100%;
        padding: 12px 1rem;
        border: 0;
        border-bottom: 1px solid #bdbdbd;
        justify-content: space-between;
        background: none;
        border-radius: 0;
        justify-content: space-between;
    }
    .header-lang-dropdown {
        width: 100%;
    }
    header .header-lang-dropdown .lang-dropdown {
        padding: 0;
        width: 100%;
        margin: 0 !important;
    }
    .header-home-btn:hover,
    .header-lang-btn:hover {
        background-color: transparent;
    }
    .header-lang-btn.show {
        background-color: #f6f6f6;
    }
    .header-container {
        padding: 0 !important;
    }
    .header-mob-bottom {
        width: 100%;
        border-top: 1px solid #bdbdbd;
        /*   margin-top: auto;*/
    }
    .header-right .header-lang-dropdown,
    .header-font-resize {
        display: none !important;
    }
    .header .header-cta-btn {
        white-space: nowrap;
        width: 100%;
        border-radius: 0;
        justify-content: space-between;
    }
    .header .header-cta-btn .header-cta-text {
        font-size: 1.125rem;
    }
    .feedback-title br {
        display: none;
    }
    .feedback-banner.feedback-tb-banner {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .feedback-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .feedback-signup .feedback-btn-row {
        justify-content: center;
        width: 100%;
    }
    .header-mobile-logo img,
    .header-logo-container {
        max-width: 116px;
    }
    .header-mobile-top {
        padding: 15px;
    }
    .header-menu-container {
        padding-top: 60px;
    }
    .banner-section {
        padding: 1rem 0 2.125rem;
    }

    .hcp-accordion-wrapper .accordion-button {
        padding-left: 80px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hcp-accordion-wrapper .accordion-button::before {
        width: 45px;
        height: 45px;
    }

    .white-box-content .custom-icon-list {
        padding-left: 60px;
    }

    .custom-accordion .accordion-button::after {
        width: 18px;
        height: 18px;
        background-size: 18px;
    }

    .white-box {
        padding: 20px;
    }

    .banner-title {
        font-size: 3.75rem;
        line-height: 60px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .feedback-banner {
        border-radius: 16px;
    }

    .feedback-title {
        font-size: 1.625rem;
        line-height: 34px;
    }

    .community-section {
        padding: 60px 0;
    }

    .community-image {
        border-radius: 24px;
    }

    .community-feature {
        gap: 23px;
    }

    .newsletter-title {
        font-size: calc(var(--heading-2-font-size) * 0.7);
        line-height: 1.2;
    }

    .resources-section {
        padding: 50px 0;
    }

    .resources-section .strapline {
        margin-bottom: 20px;
    }

    .resources-title {
        font-size: calc(var(--heading-2-font-size) * 0.7);
        margin-bottom: 40px;
    }

    .footer {
        padding: 0;
    }

    .footer-right {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        max-width: 100%;
        width: 100%;
    }
    .header-right .header-font-resize {
        display: none !important;
    }
    .header-right .header-cta-btn {
        margin: 0 auto;
    }

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

    .footer-legal-links {
        flex-direction: column;
        gap: 16px;
    }

    .cmn-pad {
        padding: 60px 0;
    }

    .m-60 {
        margin: 30px 0;
    }

    .mb-60,
    .mb-90 {
        margin-bottom: 30px;
    }

    p,
    .white-box .white-box-content p,
    .cll-section .banner-description p,
    .cll-faq-accordian p,
    .custom-icon-list li {
        font-size: 1.125rem;
        line-height: 24px;
    }

    .sub-head {
        font-size: 2.0625rem;
        line-height: 38px;
    }

    .white-box .sub-head,
    .cll-faq-accordian h4 {
        font-size: 1.125rem;
        line-height: 24px;
    }

    .custom-accordion .accordion-button {
        font-size: 20px;
        line-height: 24px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-cta-text {
        font-size: 0.875rem;
    }

    .mt-50,
    .mb-50 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .accordion-content-wrapper {
        margin-bottom: 30px;
    }

    .vote-table-post .f-30 {
        font-size: 1.375rem;
        line-height: 29px;
    }

    .vote-table-wrapper {
        border-radius: 12px;
    }

    .vote-table thead {
        display: none;
    }

    .vote-table,
    .vote-table tbody,
    .vote-table tr,
    .vote-table td {
        display: block;
        width: 100%;
    }

    .vote-table tbody tr {
        padding: 20px;
        position: relative;
    }

    .vote-table td {
        padding: 4px 0;
        text-align: left;
    }

    .vote-table td.vote-table-post {
        padding-bottom: 10px;
    }

    .vote-table td.vote-table-upvotes {
        width: auto;
        text-align: left;
        font-size: 1.25rem;
    }

    .vote-table td.vote-table-posted {
        width: auto;
        text-align: left;
    }

    .vote-avatar {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .vote-post-cell {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .play-btn-overlay {
        width: 70px;
        height: 70px;
    }

    .video-story-info {
        margin-bottom: 40px !important;
    }

    .video-stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        row-gap: 40px;
    }

    .video-story-card .video-image {
        margin-bottom: 25px !important;
    }

    .Suggestion-form {
        margin-top: 60px;
    }

    .Suggestion-form .suggestion-box {
        padding: 24px 20px;
    }

    .Suggestion-form .btn-container {
        text-align: left;
    }

    #ext-message-line1 br {
        display: none;
    }

    #ext-overlay .overlay-btn-wrapper {
        padding-top: 30px;
    }

    #ext-message-line1 {
        padding-top: 20px;
        font-size: 1.5rem;
    }

    .img-circle {
        width: 40px;
        height: 40px;
    }
    .suggestion-table table thead th:first-child {
        width: 60px;
    }
    .suggestion-table table tbody td p {
        font-size: 1.125rem;
    }
    .suggestion-table table thead th:first-child,
    .suggestion-table table thead th {
        font-size: 1rem;
        padding: 14px;
        display: none !important;
    }
    .upvotes-count-wrapper .upvotes-count span {
        width: 36px;
        height: 36px;
    }
    .upvotes-count-wrapper .upvotes-count span svg {
        max-width: 50%;
        max-height: 60%;
    }
    .suggestion-table {
        overflow: none;
        border: 0;
        border-radius: 0;
    }
    .suggestion-table table tbody td:nth-child(2) {
        /* 		width: 100%; */
        width: 50%;
    }
    .suggestion-table table tbody td:first-child {
        /* 		display: none !important; */
        width: 100%;
    }
    .suggestion-table table tbody,
    .suggestion-table table {
        display: block;
    }
    .suggestion-table table tbody tr {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 4px solid #fff;
    }
    .suggestion-table table tbody td {
        display: block;
        width: 50%;
        font-size: 1rem;
        padding: 10px 20px;
        border: 0;
        background: #f6f6f6;
    }
    .suggestion-table table tbody td:before {
        content: attr(data-title);
        display: block;
        font-size: 1rem;
        color: #000;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .suggestion-form h3 {
        font-size: 20px;
        padding-left: 0;
    }
    .suggestion-form {
        margin-top: 50px;
    }
    .suggestion-form .nf-form-content .nf-field-label {
        padding-left: 0;
    }
    .suggestion-box-content h4 {
        margin-bottom: 20px;
    }
    .suggestion-form h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .resource-card .resource-card-title br {
        display: none;
    }
    .footer-mob-menu {
        display: block !important;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }
    .footer-right,
    .footer-left .header-cta-btn {
        display: none !important;
    }
    .footer-mob-menu .header-menu-left {
        border-top: 1px solid #bdbdbd;
        border-top: 1px solid var(--white-95);
    }
    .footer-mob-menu .header-home-btn {
        border-bottom: 1px solid var(--white-95);
    }
    .footer-mob-menu .dropdown-icon {
        rotate: -90deg;
        width: 10px;
    }
    .footer-mob-menu .header-cta-btn {
        width: 100%;
        border-radius: 0;
        justify-content: space-between;
        padding: 8px 24px;
    }
    .footer-mob-menu .header-cta-btn .header-cta-text {
        font-size: 1.125rem;
    }
    .footer-mob-menu .custom-dropdown .dropdown-item,
    .footer-mob-menu .header-nav-link,
    .footer-mob-menu .header-home-btn {
        padding: 12px 24px;
    }
    .footer-logo-link img {
        max-width: 114px;
    }
    .footer .container {
        gap: 20px;
        padding-bottom: 20px;
    }
    .footer-mob-menu .footer-legal-links {
        gap: 0;
    }
    .footer-mob-menu .footer-legal-links a {
        display: block;
        color: #30383f;
        font-size: 1rem;
        padding: 8px 24px;
    }
    .footer-left,
    .footer-bottom-left {
        padding-inline: 9px;
    }
    .feedback-signup .feedback-banner .feedback-bg-image,
    .cll-section .feedback-bg-image {
        width: auto !important;
        max-width: none !important;
    }
    .feedback-bg-image {
        width: auto;
        height: 300px;
        bottom: 0;
        right: 0;
        left: 0;
        margin-left: -10%;
        margin-right: -10%;
        top: 60%;
    }
    .feedback-bg-image img {
        object-fit: cover;
        rotate: 90deg;
        height: auto;
    }
    .feedback-content {
        text-align: center;
        margin: 0 auto;
    }
    .feedback-banner .feedback-btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mt-118 {
        margin-top: 50px;
    }

    .newsletter-section {
        padding: 50px 0px;
    }

    .banner-title {
        font-size: 2.5rem;
        line-height: 50px;
    }

    .banner-content {
        gap: 10px;
    }
    .banner-description {
        gap: 1rem;
    }
    .cll-home-banner .banner-cta-btn {
        margin-top: 30px;
    }

    #ext-modal {
        padding: 30px 20px;
    }

    #ext-message-line1 {
        padding-top: 20px;
    }
    .feedback-banner {
        padding: 20px 28px;
    }
    .feedback-title {
        font-size: 1.25rem;
        line-height: normal;
        text-align: center;
    }
    .feedback-banner .feedback-btn {
        margin: 0 auto;
    }
    .feedback-content .heading-subtitle-4 {
        text-align: center;
        line-height: 1.4;
    }
    .feedback-signup .feedback-btn-row {
        margin: 0 auto;
    }
    .community-grid {
        margin-top: 30px;
    }
    .community-content .strapline {
        margin: 0 auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .community-content .community-title {
        margin: 0 auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .feature-icon-wrapper {
        width: 57px;
        height: 57px;
    }
    .feature-text {
        font-size: 1.125rem;
    }
    .community-feature:last-child {
        border-bottom: 1px solid #a8b5c6;
    }
    .community-feature {
        border-bottom-width: 1px;
        padding: 17px 0;
    }
    .community-content .header-cta-btn {
        margin: 0 auto;
    }
    .community-features {
        margin-bottom: 30px;
    }
    .page.page-id-948 .tolt-sec.cll-section .cll-section-image figure img {
        max-height: 150px;
    }
    .cll-section .cll-section-image figure {
        border-radius: 30px;
    }
    .banner-description p {
        font-size: 1.125rem;
    }
}
/* Min width */
@media (min-width: 992px) {
    .dropdown-menu.custom-dropdown {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        pointer-events: none;
        margin-top: 30px !important;
        /* Adjust if it's too far from the trigger */
    }

    /* Invisible bridge to maintain hover state across the margin gap */
    .dropdown-menu.custom-dropdown::before {
        content: "";
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
    }

    .header-nav-item.dropdown:hover .dropdown-menu.custom-dropdown,
    .header-lang-dropdown.dropdown:hover .dropdown-menu.custom-dropdown,
    .header-nav-item.dropdown .dropdown-menu.custom-dropdown.show,
    .header-lang-dropdown.dropdown .dropdown-menu.custom-dropdown.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .header-nav-item.dropdown:hover .dropdown-icon,
    .header-lang-dropdown.dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }

    .header-nav-link[aria-expanded="true"],
    .header-lang-btn[aria-expanded="true"],
    .header-nav-item.dropdown:hover .header-nav-link,
    .header-lang-dropdown.dropdown:hover .header-lang-btn {
        background-color: var(--white-95);
    }
}

@media (max-width: 991px) {
    .cllmodal .modal-body {
        padding: 70px 50px 30px;
    }
    .cllmodal .modal-btns {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .cllmodal .modal-btns {
        flex-direction: column;
    }
    .cllmodal .btn-close {
        right: 35px;
        top: 25px;
    }
    .cllmodal .modal-body {
        padding: 60px 30px 25px;
    }
}
