main {
    padding-top: 60px;
}


.hero {
    width: 100%;
    background: url('/images/heroImages/EMPLOYER_APPROACH_BG.webp') no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.herocontent {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.herocontent h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--libre);
    max-width: 900px;
}

.herocontent p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 20px;
    width: 90%;
    max-width: 820px;
}

.hero .ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.hero .ctas .cta {
    width: 350px;
}

@media (max-width: 650px) {
    main{
        padding-top: 0;
    }
    .herocontent {
        align-items: flex-start;
        text-align: left;
    }

    .herocontent h1 {
        font-size: 30px;
    }

    .herocontent h2 {
        font-size: 1.7em;
    }

    .headerGroup h2 {
        font-size: 30px;
    }

    .hero .ctas {
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        width: 100%;
    }
}


.approach-science {
    padding-top: 120px;
    padding-bottom: 120px;
}

.approach-header {
    margin-bottom: 48px;
    max-width: 1200px;
}

.approach-badge {
    background: #CFDEDE;
    color: var(--teal-dark);
}

.approach-title {
    font-family: var(--libre);
    font-size: 5rem;
    line-height: 6.2rem;
    letter-spacing: -0.1rem;
    color: var(--teal-900);
    margin-bottom: 16px;
}

.approach-intro {
    font-size: 2rem;
    line-height: 1.45;
    color: var(--text-gray);
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.approach-stat-card {
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.approach-stat-card p {
    font-family: var(--libre);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.16;
    color: var(--navy-blue);
}

.stat-card-blue {
    background-color: #DDEEEF;
}

.stat-card-yellow {
    background-color: #FFF9E9;
}

.stat-card-sky {
    background-color: #D7E9FF;
}

.stat-card-green {
    background-color: #DBF8EB;
}

.approach-subtitle {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 80px;
}

.approach-science-cards {
    max-width: 1200px;
    margin: 0 auto 56px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.science-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(228, 229, 238, 1);
}

.science-card--reverse {
    grid-template-columns: 1fr 2fr;
}

.science-card-text {
    padding: 56px;
    background: #F3F3F3;
}

.science-card--reverse .science-card-text {
    order: 2;
}

.science-card-visual {
    padding: 56px;
    background: #DEE9E9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.science-card-visual img {
    max-width: 220px;
    max-height: 220px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.science-card h2 {
    font-family: var(--libre);
    font-size: 3.6rem;
    line-height: 1.2;
    color: var(--teal-900);
    margin-bottom: 16px;
}

.science-card p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-gray2);
}

.science-card p+p {
    margin-top: 16px;
}

.approach-bottom-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.approach-bottom-cta p {
    font-size: 2.4rem;
    line-height: 1.5;
    color: var(--text-gray2);
}

.approach-bottom-cta .cta {
    width: 280px;
}

@media (max-width: 1100px) {
    .approach-science {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

    .science-card,
    .science-card--reverse {
        grid-template-columns: 1fr;
    }

    .science-card .science-card-text {
        order: 1;
    }
}

@media (max-width: 650px) {
    .approach-title {
        font-size: 3.2rem;
        line-height: 4rem;
    }

    .approach-header {
        margin-bottom: 32px;
    }

    .approach-stats {
        grid-template-columns: 1fr;
    }

    .approach-stat-card {
        padding: 24px 20px;
        min-height: 140px;
    }

    .approach-stat-card p {
        font-size: 2.4rem;
    }

    .science-card-text,
    .science-card-visual {
        padding: 32px 24px;
    }

    .approach-subtitle {
        font-size: 1.8rem;
        margin-bottom: 48px;
    }

    .approach-bottom-cta p {
        font-size: 1.8rem;
    }
}

.collabs {
    background-color: #ECF1F0;
    padding-top: 104px;
    padding-bottom: 104px;
}

.collabs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.collabs-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.collabs-badge {
    background: #EAF1F1;
}

.collabs-title {
    font-family: var(--libre);
    font-size: 5rem;
    line-height: 6.2rem;
    letter-spacing: -0.1rem;
    color: var(--tangerine);
    margin-bottom: 16px;
}

.collabs-intro {
    font-size: 2rem;
    line-height: 1.45;
    color: var(--text-gray);
}

.collabs-main {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
    margin-bottom: 72px;
}

.collabs-foundations {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.collabs-foundation-item {
    background: rgba(188, 224, 228, 0.35);
    border-radius: 8px;
    padding: 0;
}
.collabs-foundation-item:hover{
    transition: .4s;
    background: #00000001;
}
.collabs-foundation-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 24px 40px 0px;
}

.collabs-foundation-label {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
}

.collabs-foundation-icon {
    width: 24px;
    height: 12px;
    position: relative;
    transition: transform 0.2s ease;
}

.collabs-foundation-icon::before {
    content: "";
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 50%;
    margin: 0 auto;
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--text-base);
    border-bottom: 2px solid var(--text-base);
    transform: translateY(-70%) rotate(-45deg);
}

.collabs-foundation-list {
    padding: 0 40px 24px 40px;
    display: flex;
    flex-direction: column;
    list-style: inside;
}

.collabs-foundation-list-item {
    font-size: 1.6rem;
    line-height: 1.45;
    color: var(--text-gray);
    margin-top: 10px;
    list-style: none;
    position: relative;
    padding-left: 1.2em;
}
.collabs-foundation-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
}


.collabs-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

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


.collabsHidden {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.25s ease, opacity 0.25s ease;
}

.collabsHidden > * {
    overflow: hidden;
}

.collabsHidden.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.collabs-foundation-head.is-open .collabs-foundation-icon {
    transform: rotate(180deg);
}
@media (max-width: 1100px) {
    .collabs-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .collabs {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .collabs-title {
        font-size: 3.2rem;
        line-height: 4rem;
    }

    .collabs-foundation-item {
        padding: 0;
    }

    .collabs-foundation-head {
        padding: 20px 24px 10px;
    }

    .collabs-foundation-list {
        padding: 0 24px 20px 24px;
    }

    .collabs-foundation-label {
        font-size: 2rem;
    }

    .collabs-logos {
        justify-content: center;
    }
}

.trust {
    background-color: #FAF8F4;
    padding-top: 104px;
    padding-bottom: 104px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header {
    max-width: 820px;
    margin-bottom: 56px;
}

.trust-badge {
    background: #EAF1F1;
}

.trust-title {
    font-family: var(--libre);
    font-size: 5rem;
    line-height: 6.2rem;
    letter-spacing: -0.1rem;
    color: var(--teal-900);
    margin-bottom: 16px;
}

.trust-intro {
    font-size: 2rem;
    line-height: 1.45;
    color: var(--text-gray);
}

.trust-cards {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.trust-card {
    flex: 1;
    border-radius: 24px;
    padding: 32px 40px;
}

.trust-card--data {
    background: rgba(21, 107, 112, 0.1);
}

.trust-card--privacy {
    background: rgba(150, 81, 4, 0.1);
}

.trust-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-bullet-icon {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background: #FBFCFC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-bullet-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.trust-list-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--text-gray2);
}

.trust-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-ctas .cta {
    width: 280px;
}

@media (max-width: 1100px) {
    .trust-cards {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .trust {
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .trust-intro{
        font-size: 16px;
    }

    .trust-title {
        font-size: 3.2rem;
        line-height: 4rem;
    }
    .trust-card {
        padding: 24px 20px;
    }
    .trust-card h3{
        font-size: 20px;
    }
    .trust-list-text {
        font-size: 16px;
    }
     .trust-ctas .cta {
        width: 100%;
    }
}