:root {
    --oceanBlue: #390099;
    --mistLavender: #ebe6f5;
    --deepViolet: #25006b;
    --forestSpring: #2d8f47;
    --springMist: #e8f5ea;
    --sunsetCoral: #ff6b4a;
    --coralMist: #ffe5e1;
    --goldenAccent: #ffa726;
    --goldenMist: #fff3e0;
    --charcoalGray: #4a4a4a;
    --silverMist: #f8f9fa;
    --statusInfo: #17a2b8;
    --statusWarn: #ffc107;
    --statusSuccess: #28a745;
}

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

body {
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoalGray);
    background: #fff;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--deepViolet);
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h3 {
    font-size: 2.1rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1.2rem;
    color: var(--charcoalGray);
}

a {
    text-decoration: none;
    color: var(--oceanBlue);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--sunsetCoral);
}

.globalContainer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px;
}

.contentGrid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.fullHeight {
    height: 100%;
}

.alignCentered {
    align-items: center;
}

.centeredLayout {
    justify-content: center;
}

.spaceBetween {
    justify-content: space-between;
}

.textCentered {
    text-align: center;
}

.leftAligned {
    text-align: left;
}

.upperCased {
    text-transform: uppercase;
}

.flexLayout {
    display: flex;
    flex-wrap: wrap;
}

.flexCentered {
    display: flex;
    align-items: center;
}

.spacedBottom {
    margin-bottom: 2.5rem;
}

.primaryNavigation {
    position: relative;
    z-index: 100;
}

.navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brandLogo img {
    height: 48px;
    width: auto;
}

.navigationToggle {
    display: none;
}

.toggleHandle {
    display: none;
}

.hamburgerIcon {
    width: 32px;
    height: 3px;
    background: var(--deepViolet);
    position: relative;
    transition: all 0.4s ease;
}

.hamburgerIcon:before,
.hamburgerIcon:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--deepViolet);
    transition: all 0.4s ease;
}

.hamburgerIcon:before {
    top: -9px;
}

.hamburgerIcon:after {
    top: 9px;
}

.navigationWrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menuElement {
    list-style: none;
}

.menuLink {
    color: var(--deepViolet);
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.menuLink:hover {
    color: var(--sunsetCoral);
}

.heroShowcase {
    position: relative;
    z-index: 1;
    width: 100%;
}

.heroSlidePanel {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 820px;
    background-color: var(--deepViolet);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.backgroundOverlay {
    position: relative;
    z-index: 1;
}

.backgroundOverlay::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(37, 0, 107, 0.45);
}

.heroTextBlock {
    width: 100%;
    padding: 0 13px;
}

.mainMessage h1 {
    font-size: 3.8rem;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.1;
}

.mainMessage p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 45px;
    max-width: 640px;
}

.primaryActionButton {
    position: relative;
    z-index: 1;
    min-width: 180px;
    height: 52px;
    line-height: 48px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 0 34px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid var(--sunsetCoral);
    border-radius: 34px;
    background-color: var(--sunsetCoral);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.primaryActionButton:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(255, 107, 74, 0.3);
}

.outlineActionButton {
    position: relative;
    z-index: 1;
    min-width: 180px;
    height: 52px;
    line-height: 48px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 0 34px;
    text-align: center;
    text-transform: uppercase;
    color: var(--sunsetCoral);
    border: 2px solid var(--sunsetCoral);
    border-radius: 34px;
    background-color: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.outlineActionButton:hover {
    background-color: var(--sunsetCoral);
    color: #ffffff;
    transform: translateY(-2px);
}

.aboutFoundation {
    padding: 110px 0 90px 0;
}

.textSection {
    width: 100%;
    padding: 0 13px;
    margin-bottom: 55px;
}

.sectionHeader {
    position: relative;
    display: inline-block;
    font-size: 2.9rem;
    font-weight: 700;
}

.narrowColumn {
    width: 100%;
    max-width: 720px;
    padding: 0 13px;
}

.standardSize {
    font-size: 1.1rem;
    margin-bottom: 34px;
}

.imageTextCombo {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.visualSection, 
.textContent {
    width: 100%;
    min-height: 440px;
}

.visualSection {
    height: 440px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.textContent {
    padding: 21px;
    display: flex;
    align-items: center;
}

.contentBlock {
    width: 100%;
}

.borderedHeading {
    text-transform: uppercase;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 21px;
    font-size: 2.8rem;
    font-weight: 700;
}

.borderedHeading:after {
    position: absolute;
    content: "";
    width: 55px;
    height: 3px;
    bottom: 0;
    background: var(--sunsetCoral);
    left: 0;
}

.leadParagraph {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--charcoalGray);
    margin-bottom: 2.1rem;
}

.benefitsList {
    padding: 0;
    margin: 0 0 34px 0;
    list-style: none;
}

.benefitsList li {
    padding: 0;
    margin: 0;
    display: block;
    padding-left: 32px;
    position: relative;
    margin-bottom: 13px;
}

.benefitsList li:before {
    position: absolute;
    color: var(--forestSpring);
    left: 0;
    top: -0.2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    content: "✓";
    font-weight: 700;
}

.inspirationalQuote {
    border-left: 4px solid var(--sunsetCoral);
    padding-left: 2.1rem;
    margin: 2.1rem 0;
    font-style: italic;
}

.inspirationalQuote p {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--charcoalGray);
}

.inspirationalQuote cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.statisticsShowcase {
    padding-bottom: 105px;
    padding-top: 140px;
}

.statsLeftSection {
    width: 100%;
    padding: 0 13px;
}

.statsRightSection {
    width: 100%;
    padding: 0 13px;
}

.programInfo .headingSection h3 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--deepViolet);
    margin-bottom: 34px;
}

.programInfo .headingSection h3 span {
    font-weight: 300;
    color: var(--sunsetCoral);
}

.programInfo .headingSection p {
    color: var(--charcoalGray);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 55px;
}

.gradientActionButton {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 21px 62px;
    display: inline-block;
    border-radius: 35px;
    background: linear-gradient(135deg, var(--sunsetCoral) 0%, var(--goldenAccent) 100%);
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
}

.gradientActionButton:hover {
    background: linear-gradient(135deg, var(--goldenAccent) 0%, var(--sunsetCoral) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 74, 0.4);
}

.achievementGrid {
    width: 100%;
}

.gridRow {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}

.achievementCard {
    background: #fff;
    border-radius: 18px;
    padding: 45px 45px 38px 45px;
    margin: 0 21px;
    box-shadow: 0 21px 42px rgba(0, 0, 2, 0.1);
    transition: transform 0.4s ease;
    flex: 1;
}

.achievementCard:hover {
    transform: translateY(-4px);
}

.achievementCard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 21px;
}

.counterNumber {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--deepViolet);
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1;
}

.cardContent p {
    font-size: 19px;
    color: var(--charcoalGray);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}

.testimonialArea {
    background: var(--silverMist);
    padding: 145px 0 135px 0;
    overflow: hidden;
}

.testimonialContainer {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.testimonialCard {
    background: #fff;
    border-radius: 13px;
    padding: 70px 90px 95px 90px;
    box-shadow: 0 21px 42px rgba(0, 0, 2, 0.1);
}

.clientImage {
    margin-right: 32px;
    flex-shrink: 0;
}

.clientImage img {
    max-width: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonialText h4 {
    font-size: 23px;
    font-weight: 620;
    color: var(--deepViolet);
    margin-bottom: 0;
}

.testimonialText span {
    display: block;
    color: var(--charcoalGray);
    font-weight: 320;
    font-size: 18px;
    margin-bottom: 21px;
    line-height: 1;
    margin-top: 7px;
}

.testimonialText p {
    font-size: 20px;
    color: var(--charcoalGray);
    margin-bottom: 0;
    line-height: 1.6;
}

.coloredBackground {
    color: var(--mistLavender);
    background: var(--oceanBlue);
    padding: 90px 0;
}

.sectionTitle h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 55px;
}

.lightText {
    color: #fff !important;
}

.featureItem {
    width: 33.333%;
    padding: 0 13px;
}

.serviceCard {
    padding: 45px 21px;
}

.serviceIcon {
    width: 105px;
    height: 105px;
    margin: 0 auto 34px auto;
    position: relative;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconElement {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}

.serviceContent h3 {
    font-size: 19px;
    margin-bottom: 21px;
    color: #fff;
    text-transform: uppercase;
}

.serviceContent p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.lightBackground {
    background-color: var(--silverMist);
}

.contactArea {
    padding: 80px 0;
}

.darkText {
    color: var(--deepViolet) !important;
}

.contactItem {
    width: 33.333%;
    padding: 0 13px;
    margin-bottom: 34px;
}

.contactLabel {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--deepViolet);
}

.contactInfo {
    margin-bottom: 0;
    color: var(--charcoalGray);
}

.formContainer {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 13px;
}

.inputGroup {
    margin-bottom: 21px;
}

.gridRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.inputHalf {
    width: 50%;
    padding: 0 8px;
}

.inputFull {
    width: 100%;
    padding: 0 8px;
}

.formInput {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--charcoalGray);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 7px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-family: 'Times New Roman', serif;
}

.formInput:focus {
    color: var(--charcoalGray);
    background-color: #fff;
    border-color: var(--oceanBlue);
    outline: 0;
    box-shadow: none;
}

.formInput::placeholder {
    color: #6c757d;
    opacity: 1;
}

textarea.formInput {
    height: auto;
    resize: vertical;
    min-height: 120px;
}

.submitSection {
    width: 50%;
    padding: 0 8px;
    margin: 21px auto 0;
}

.submitButton {
    display: block;
    width: 100%;
    cursor: pointer;
    border: none;
}

.darkSection {
    background: var(--deepViolet);
    color: #fff;
    padding: 95px 0;
}

.footerGrid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
    margin-bottom: 55px;
}

.footerColumn {
    width: 25%;
    padding: 0 13px;
    margin-bottom: 34px;
}

.footerLinks {
    padding-left: 0;
    list-style: none;
}

.footerLinks li {
    margin-bottom: 13px;
}

.footerLinks a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footerLinks a:hover {
    color: #fff;
}

.contactDetails p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 13px;
}

.contactIcon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-right: 8px;
}

.newsletterForm .newsletterGroup {
    position: relative;
}

.newsletterInput {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff;
    width: 100%;
    padding: 8px 40px 8px 0;
}

.newsletterInput::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.newsletterInput:focus {
    border-bottom: 1px solid white;
    outline: none;
}

.newsletterButton {
    background: none;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.submitIcon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 21px;
}

.copyrightText {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.teamMemberSection {
    width: 33.333%;
    padding: 0 13px;
    margin-bottom: 55px;
}

.teamMember {
    background: #fff;
    border-radius: 15px;
    padding: 34px 21px;
    box-shadow: 0 15px 35px rgba(0, 0, 2, 0.08);
    transition: transform 0.3s ease;
}

.teamMember:hover {
    transform: translateY(-5px);
}

.teamPhoto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 21px;
}

.memberName {
    font-size: 1.4rem;
    color: var(--deepViolet);
    margin-bottom: 8px;
}

.memberRole {
    color: var(--sunsetCoral);
    font-weight: 500;
    margin-bottom: 13px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.thankYouMainSection {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--mistLavender) 0%, #ffffff 100%);
}

.thankYouContent {
    max-width: 720px;
    margin: 0 auto;
    padding: 55px 34px;
    background: #fff;
    border-radius: 21px;
    box-shadow: 0 25px 55px rgba(0, 0, 2, 0.12);
}

.successIconWrapper {
    margin-bottom: 34px;
}

.successCheckmark {
    width: 85px;
    height: 85px;
    margin: 0 auto;
    background: var(--forestSpring);
    border-radius: 50%;
    position: relative;
    animation: checkmarkPulse 1.5s ease-in-out;
}

.successCheckmark:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

@keyframes checkmarkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thankYouHeading {
    font-size: 3.2rem;
    color: var(--deepViolet);
    margin-bottom: 13px;
    line-height: 1.2;
}

.thankYouSubheading {
    font-size: 1.4rem;
    color: var(--charcoalGray);
    margin-bottom: 34px;
    font-weight: 300;
}

.thankYouMessage {
    margin-bottom: 45px;
}

.thankYouMessage p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 21px;
}

.highlightText {
    background: var(--coralMist);
    padding: 21px;
    border-radius: 13px;
    border-left: 4px solid var(--sunsetCoral);
    font-weight: 500;
    color: var(--deepViolet) !important;
}

.nextStepsSection {
    margin-bottom: 45px;
}

.nextStepsSection h3 {
    color: var(--deepViolet);
    margin-bottom: 28px;
    font-size: 1.6rem;
}

.stepsGrid {
    display: flex;
    gap: 21px;
    margin-bottom: 34px;
}

.stepItem {
    flex: 1;
    text-align: center;
    padding: 21px 13px;
}

.stepNumber {
    width: 55px;
    height: 55px;
    background: var(--oceanBlue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 13px auto;
}

.stepItem p {
    font-size: 0.95rem;
    color: var(--charcoalGray);
    margin-bottom: 0;
}

.actionButtonsGroup {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.whileYouWaitSection {
    padding: 85px 0;
}

.waitingItem {
    width: 33.333%;
    padding: 0 13px;
}

.waitingCard {
    background: #fff;
    border-radius: 15px;
    padding: 34px 21px;
    box-shadow: 0 13px 28px rgba(0, 0, 2, 0.07);
    transition: transform 0.3s ease;
    height: 100%;
}

.waitingCard:hover {
    transform: translateY(-7px);
}

.waitingCard img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 21px;
}

.waitingContent h3 {
    font-size: 1.3rem;
    color: var(--deepViolet);
    margin-bottom: 13px;
}

.waitingContent p {
    font-size: 0.95rem;
    color: var(--charcoalGray);
    line-height: 1.6;
}

.quickContactSection {
    padding: 65px 0;
}

.quickContactContent {
    max-width: 620px;
}

.quickContactContent h3 {
    font-size: 2.1rem;
    margin-bottom: 13px;
}

.quickContactContent p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.9;
}

.phoneDisplayWrapper {
    margin-bottom: 21px;
}

.phoneNumber {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 21px 34px;
    border-radius: 55px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.phoneNumber:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.availabilityNote {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

@media screen and (max-width: 890px) {
    .toggleHandle {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.4s ease;
        padding-top: 85px;
        flex-direction: column;
        align-items: center;
    }

    .menuElement {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .menuLink {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--deepViolet);
    }

    .navigationToggle:checked ~ .navigationWrapper {
        left: 0;
    }

    .navigationToggle:checked ~ .toggleHandle .hamburgerIcon {
        background: transparent;
    }

    .navigationToggle:checked ~ .toggleHandle .hamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navigationToggle:checked ~ .toggleHandle .hamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .heroSlidePanel {
        height: 640px;
    }

    .mainMessage h1 {
        font-size: 2.8rem;
    }

    .imageTextCombo {
        flex-direction: column;
    }

    .visualSection {
        margin-bottom: 55px;
    }

    .textContent {
        padding: 2.1rem 1rem;
    }

    .borderedHeading {
        font-size: 2.1rem;
    }

    .leadParagraph {
        font-size: 1.1rem;
    }

    .testimonialCard {
        display: block !important;
        padding: 38px;
    }

    .clientImage {
        margin-bottom: 34px;
        margin-right: 0;
        text-align: center;
    }

    .testimonialText p {
        font-size: 18px;
    }

    .featureItem {
        width: 100%;
        margin-bottom: 34px;
    }

    .contactItem {
        width: 100%;
    }

    .inputHalf {
        width: 100%;
        margin-bottom: 13px;
    }

    .submitSection {
        width: 100%;
    }

    .footerColumn {
        width: 50%;
    }

    .statsLeftSection,
    .statsRightSection {
        width: 100%;
    }

    .statsLeftSection {
        margin-bottom: 55px;
    }

    .programInfo .headingSection h3 {
        font-size: 2.3rem;
    }

    .achievementCard {
        margin: 0 8px;
    }

    .teamMemberSection {
        width: 100%;
    }

    .thankYouContent {
        padding: 34px 21px;
    }

    .thankYouHeading {
        font-size: 2.3rem;
    }

    .stepsGrid {
        flex-direction: column;
        gap: 13px;
    }

    .actionButtonsGroup {
        flex-direction: column;
        align-items: center;
    }

    .waitingItem {
        width: 100%;
        margin-bottom: 21px;
    }

    .phoneNumber {
        font-size: 2.1rem;
        padding: 17px 28px;
    }
}

@media screen and (max-width: 640px) {
    .globalContainer {
        padding: 0 13px;
    }

    .mainMessage h1 {
        font-size: 2.1rem;
    }

    .aboutFoundation {
        padding: 70px 0 55px 0;
    }

    .sectionHeader {
        font-size: 2.1rem;
    }

    .gridRow {
        flex-direction: column;
    }

    .achievementCard {
        margin: 8px 0;
        width: 100%;
    }

    .footerColumn {
        width: 100%;
    }

    .statisticsShowcase {
        padding: 70px 0 55px 0;
    }

    .testimonialArea {
        padding: 70px 0 55px 0;
    }
}

@media screen and (min-width: 891px) {
    .navigationWrapper {
        display: block;
    }

    .contentGrid {
        display: flex;
        gap: 21px;
    }
}

@media screen and (min-width: 1600px) {
    .globalContainer {
        max-width: 1480px;
    }

    .visualSection, 
    .textContent {
        width: 50%;
        min-height: 560px;
    }

    .textContent {
        padding: 4.5rem;
    }

    .statsLeftSection,
    .statsRightSection {
        width: 50%;
    }
}