:root {
    --brand-blue: #078dbd;
    --brand-dark: #20242a;
    --header-height: 80px;
    --topbar-height: 42px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--brand-dark);
    font-family: Arial, Helvetica, sans-serif;
}

.topbar {
    min-height: var(--topbar-height);
    background: #101e66;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--topbar-height);
    padding-right: 42px;
    padding-left: 42px;
}

.topbar-contact,
.topbar-right,
.working-hours,
.topbar-socials {
    display: flex;
    align-items: center;
}

.topbar-contact,
.topbar-right {
    gap: 14px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: #65cef2;
}

.topbar-icon {
    display: inline-grid;
    width: 19px;
    height: 19px;
    margin-right: 6px;
    border-radius: 2px;
    background: var(--brand-blue);
    font-size: 9px;
    place-items: center;
}

.topbar-divider {
    width: 1px;
    height: 18px;
    background: rgb(255 255 255 / 32%);
}

.topbar-socials {
    gap: 18px;
}

.topbar-socials a {
    font-size: 11px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 22px rgb(15 23 42 / 8%);
}

.navbar {
    min-height: var(--header-height);
    padding: 10px 0;
}

.navbar-container {
    padding-right: 42px;
    padding-left: 42px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    width: 205px;
    margin: 0;
    color: var(--brand-blue);
    line-height: 0.88;
}

.navbar-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.navbar-nav {
    gap: 27px;
}

.navbar .nav-link {
    padding: 16px 5px !important;
    color: #25282c;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--brand-blue);
}

.dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: 2px;
    border-width: 4px 4px 0;
}

.dropdown-menu {
    min-width: 225px;
    padding: 7px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
}

.dropdown-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: normal;
}

.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item.active {
    color: var(--brand-blue);
    background: #edf8fc;
}

.navbar-actions {
    gap: 24px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 155px;
    min-height: 46px;
    padding: 12px 25px;
    border-radius: 28px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-button:hover {
    background: #057da8;
    color: #fff;
    transform: translateY(-1px);
}

.contact-button i {
    font-size: 9px;
}

.hero-carousel {
    position: relative;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    overflow: hidden;
    color: #fff;
}

.hero-section::before {
    position: absolute;
    inset: -3%;
    z-index: 0;
    background-image: var(--hero-image);
    background-position: var(--hero-position, center);
    background-size: cover;
    content: "";
    transform: scale(1);
    will-change: transform;
}

.carousel-item.active .hero-section::before {
    animation: heroZoom 7s ease-out forwards;
}

.hero-slide-one {
    --hero-image: url("../images/carousel-pic-1.jpeg");
}

.hero-slide-two {
    --hero-image: url("../images/carosuel-pic-2.jpg");
}

.hero-slide-three {
    --hero-image: url("../images/carousel-pic-3.jpeg");
    --hero-position: center 68%;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-carousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.hero-indicators {
    top: auto;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 6;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 10px;
    transform: none;
}

.hero-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 5px;
    background-color: #fff;
    opacity: 0.55;
    transition: width 0.25s ease, opacity 0.25s ease;
}

.hero-indicators [data-bs-target].active {
    width: 52px;
    height: 4px;
    opacity: 1;
}

.hero-arrow {
    top: 50%;
    z-index: 7;
    width: 46px;
    height: 46px;
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 50%;
    background: rgb(0 0 0 / 30%);
    color: #fff;
    opacity: 1;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}

.hero-arrow-prev {
    left: 55px;
}

.hero-arrow-next {
    right: 24px;
}

.hero-arrow i {
    font-size: 14px;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgb(0 0 0 / 42%);
}

.hero-container {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(880px, 92%);
    padding-top: 72px;
    padding-bottom: 112px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.hero-copy h1 {
    margin: 0 0 24px;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 700;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    vertical-align: middle;
}

.hero-copy h2 {
    margin: 0 0 22px;
    color: #66cef2;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 500;
    line-height: 1.2;
}

.hero-description {
    max-width: 520px;
    margin: 0 auto;
    color: rgb(255 255 255 / 90%);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 30px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-button i {
    font-size: 9px;
}

.hero-button-primary {
    background: var(--brand-blue);
    color: #fff;
}

.hero-button-primary:hover {
    background: #057da8;
    color: #fff;
    transform: translateY(-2px);
}

.hero-button-secondary {
    border-color: rgb(255 255 255 / 70%);
    background: rgb(255 255 255 / 12%);
    color: #fff;
    backdrop-filter: blur(5px);
}

.hero-button-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.core-features-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(340px, 1.12fr);
    min-height: 690px;
    font-family: "Inter", Arial, sans-serif;
}

.core-features-main {
    padding: 95px 42px 80px;
    background: #e7f7fc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 75px 42px;
    max-width: 940px;
    margin: 0 auto;
}

.feature-item img {
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
}

.feature-item h3 {
    margin: 0 0 14px;
    color: var(--brand-blue);
    font-size: 16px;
    font-weight: 700;
}

.feature-item p {
    margin: 0;
    color: #282d32;
    font-size: 13px;
    line-height: 1.55;
}

.features-image {
    grid-column: 2 / 4;
    min-height: 210px;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.features-image:hover img {
    transform: scale(1.04);
}

.core-features-intro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 100px 74px 78px;
    background: #fff;
}

.section-kicker {
    margin-bottom: 27px;
    padding-bottom: 7px;
    border-bottom: 1px solid #222;
    color: #333;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.core-features-intro h2 {
    margin: 0 0 26px;
    color: #131313;
    font-size: clamp(38px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.02;
}

.core-features-intro h2 span {
    color: var(--brand-blue);
}

.core-features-intro p {
    max-width: 330px;
    margin: 0;
    color: #606060;
    font-size: 14px;
    line-height: 1.55;
}

.read-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 24px;
    border-radius: 28px;
    background: var(--brand-blue);
    box-shadow: 0 12px 24px rgb(7 141 189 / 20%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.read-more-button:hover {
    background: #057da8;
    box-shadow: 0 16px 28px rgb(7 141 189 / 26%);
    color: #fff;
    transform: translateY(-2px);
}

.management-section {
    display: grid;
    grid-template-columns: minmax(0, 13fr) minmax(420px, 7fr);
    min-height: 680px;
    background: var(--brand-blue);
    font-family: "Inter", Arial, sans-serif;
}

.management-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 42px clamp(48px, 6.5vw, 100px) 50px;
    color: #fff;
}

.management-kicker {
    margin-bottom: 48px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(255 255 255 / 85%);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 1.2;
    text-transform: uppercase;
}

.management-content h2 {
    margin: 0 0 34px;
    font-size: clamp(42px, 3.2vw, 54px);
    font-weight: 700;
    line-height: 1.15;
}

.management-content p {
    max-width: 580px;
    margin: 0 0 46px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}

.management-list {
    display: grid;
    gap: 18px;
    margin: 0 0 46px;
    padding: 0;
    list-style: none;
}

.management-list li {
    font-size: 22px;
    font-weight: 700;
}

.management-list li::before {
    margin-right: 16px;
    content: "\2713";
    font-size: 27px;
    font-weight: 400;
}

.management-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    min-height: 48px;
    padding: 11px 22px;
    border: 1px solid #fff;
    border-radius: 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.management-button:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.management-button i {
    font-size: 10px;
}

.management-image {
    min-width: 0;
    overflow: hidden;
}

.management-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.agency-statement {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 900px;
    padding: 80px 24px 0;
    overflow: hidden;
    background: #fff;
    color: #282828;
    font-family: "Inter", Arial, sans-serif;
    text-align: center;
}

.agency-statement-copy {
    max-width: 1160px;
    margin: 0;
    font-size: clamp(34px, 3.05vw, 50px);
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -1.5px;
}

.agency-statement-copy span {
    color: #5d5d5d;
}

.agency-statement-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-top: 82px;
    padding-bottom: 4px;
    border-bottom: 1px solid #282828;
    color: #282828;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.agency-statement-link:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.agency-statement-link i {
    font-size: 11px;
}

.agency-mark {
    margin-top: 92px;
    margin-bottom: -76px;
    padding: 0 12px;
    background: url("../images/carousel-pic-3.jpeg") center / cover no-repeat;
    background-clip: text;
    color: transparent;
    font-size: clamp(350px, 31vw, 500px);
    font-weight: 900;
    line-height: 0.72;
    letter-spacing: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-showcase {
    background: var(--brand-blue);
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
}

.services-showcase-image {
    height: clamp(470px, 46vw, 850px);
    overflow: hidden;
}

.services-showcase-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(380px, 1fr) minmax(420px, 1.18fr);
    min-height: 620px;
}

.services-showcase-intro {
    padding: 96px 32px 70px;
}

.services-showcase-kicker {
    display: block;
    max-width: 362px;
    margin-bottom: 50px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgb(255 255 255 / 75%);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.services-showcase-intro h2 {
    margin: 0;
    font-size: clamp(52px, 4.3vw, 70px);
    font-weight: 700;
    line-height: 1.08;
}

.services-showcase-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    border-right: 1px solid rgb(255 255 255 / 45%);
    border-left: 1px solid rgb(255 255 255 / 45%);
}

.services-showcase-list article {
    display: grid;
    align-items: center;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 32px 44px;
}

.services-showcase-list article + article {
    border-top: 1px solid rgb(255 255 255 / 45%);
}

.services-showcase-list span {
    font-size: 18px;
    font-weight: 700;
}

.services-showcase-list h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.services-showcase-summary {
    padding: 92px clamp(42px, 5vw, 96px);
}

.services-showcase-summary strong {
    display: block;
    margin-bottom: 30px;
    font-size: 64px;
    line-height: 1;
}

.services-showcase-summary p {
    max-width: 390px;
    margin: 0 0 58px;
    font-size: 20px;
    line-height: 1.75;
}

.services-showcase-summary a {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.services-showcase-summary a i {
    font-size: 11px;
}

.testimonials-section {
    padding: 68px 24px 62px;
    background: #fff;
    color: #242424;
    font-family: "Inter", Arial, sans-serif;
}

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

.testimonials-heading span {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 1px solid #333;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.testimonials-heading h2 {
    margin: 28px 0 0;
    font-size: clamp(36px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.1;
}

.testimonial-content {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(300px, 430px) minmax(0, 540px);
    gap: clamp(70px, 9vw, 145px);
    max-width: 1040px;
    margin: 62px auto 0;
}

.testimonial-carousel {
    padding-bottom: 58px;
}

.testimonial-carousel .carousel-item {
    transition: transform 0.65s ease-in-out;
}

.testimonial-image {
    height: 470px;
    overflow: hidden;
}

.testimonial-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-quote {
    margin: 0;
}

.testimonial-quote-mark {
    display: block;
    height: 72px;
    margin-bottom: 24px;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.testimonial-quote p {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.38;
}

.testimonial-quote footer {
    display: grid;
    gap: 8px;
    padding-left: 12px;
    border-left: 2px solid #b7b7b7;
}

.testimonial-quote footer strong {
    font-size: 13px;
    font-weight: 700;
}

.testimonial-quote footer span {
    color: #aaa;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 38px;
}

.testimonial-controls > button {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid #d2d2d2;
    border-radius: 50%;
    background: #fff;
    color: #242424;
    font-size: 12px;
    place-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.testimonial-controls > button:hover {
    background: var(--brand-blue);
    color: #fff;
}

.testimonial-indicators {
    position: static;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.testimonial-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #bcbcbc;
}

.testimonial-indicators [data-bs-target].active {
    background: var(--brand-blue);
}

.specialization-section {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 580px;
    background: var(--brand-blue);
    font-family: "Inter", Arial, sans-serif;
}

.specialization-image {
    min-width: 0;
    overflow: hidden;
}

.specialization-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.specialization-content {
    padding: 100px clamp(50px, 7vw, 112px) 72px;
    color: #fff;
}

.specialization-kicker {
    display: inline-block;
    margin-bottom: 28px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgb(255 255 255 / 75%);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.specialization-content h2 {
    margin: 0 0 25px;
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.1;
}

.specialization-content h2 span {
    white-space: normal;
}

.specialization-content p {
    max-width: 530px;
    margin: 0 0 22px;
    font-size: 13px;
    line-height: 1.65;
}

.specialization-content ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.specialization-content li {
    font-size: 12px;
    font-weight: 700;
}

.specialization-content li::before {
    margin-right: 9px;
    content: "+";
    font-size: 17px;
    font-weight: 400;
}

.blog-section {
    padding: 72px 56px 0;
    background: #fff;
    color: #202020;
    font-family: "Inter", Arial, sans-serif;
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.blog-kicker {
    display: inline-block;
    margin-bottom: 58px;
    padding-bottom: 6px;
    border-bottom: 1px solid #333;
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.blog-header h2 {
    margin: 0;
    font-size: clamp(44px, 4.1vw, 64px);
    font-weight: 700;
    line-height: 1.08;
}

.blog-all-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #222;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 82px;
}

.blog-card {
    min-width: 0;
    padding: 0 34px 40px;
}

.blog-card:first-child {
    padding-left: 0;
}

.blog-card:last-child {
    padding-right: 0;
}

.blog-card + .blog-card {
    border-left: 1px solid #d5d5d5;
}

.blog-card-image {
    display: block;
    aspect-ratio: 1.35 / 1;
    margin-bottom: 28px;
    overflow: hidden;
}

.blog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-image:hover img {
    transform: scale(1.04);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.blog-meta span {
    padding: 9px 13px;
    border-radius: 7px;
    background: #f0f0f0;
    font-size: 16px;
    font-weight: 700;
}

.blog-meta time {
    color: #555;
    font-size: 15px;
}

.blog-card h3 {
    margin: 0 0 18px;
    font-size: clamp(25px, 2.1vw, 36px);
    font-weight: 700;
    line-height: 1.25;
}

.blog-card h3 a {
    color: #101d65;
    text-decoration: none;
}

.blog-card p {
    margin: 0;
    color: #646464;
    font-size: 17px;
    line-height: 1.65;
}

.appointment-strip {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1.5fr);
    max-width: 1180px;
    margin: 48px auto 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.appointment-strip div,
.appointment-strip a {
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 16px 56px;
}

.appointment-strip div {
    justify-content: center;
    background: var(--brand-blue);
}

.appointment-strip a {
    justify-content: space-between;
    background: #282828;
    color: #fff;
    text-decoration: none;
}

.site-footer {
    padding: 72px 32px 30px;
    background: #101e66;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(115px, 0.58fr) minmax(190px, 0.95fr) minmax(190px, 0.9fr) minmax(260px, 1.15fr);
    gap: clamp(24px, 2.5vw, 48px);
    max-width: 1840px;
    margin: 0 auto;
}

.footer-grid > *,
.services-showcase-grid > *,
.blog-grid > *,
.testimonial-content > *,
.specialization-section > * {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-logo img {
    display: block;
    width: 205px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-about p {
    max-width: 290px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 28px;
    margin-top: 32px;
}

.footer-socials a {
    display: grid;
    width: 24px;
    height: 24px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    place-items: center;
}

.footer-column h2 {
    margin: 6px 0 22px;
    font-size: 17px;
    font-weight: 700;
}

.footer-column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a,
.footer-contact address,
.footer-landmark {
    color: rgb(255 255 255 / 62%);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-contact address {
    margin: 0;
    font-style: normal;
}

.footer-landmark {
    margin: 18px 0 0;
}

.footer-landmark strong {
    color: #fff;
}

.footer-newsletter form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    min-height: 64px;
    margin-top: 36px;
    background: #292929;
}

.footer-newsletter input {
    min-width: 0;
    padding: 16px 8px 16px 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.footer-newsletter input::placeholder {
    color: rgb(255 255 255 / 55%);
    font-weight: 600;
}

.footer-newsletter button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 25px;
}

.footer-copyright {
    margin: 54px 0 0;
    color: rgb(255 255 255 / 62%);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.footer-copyright strong {
    color: #fff;
}

.contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
    align-items: center;
    min-height: 260px;
    overflow: hidden;
    background: #eaf7fb;
    padding: 38px clamp(20px, 5vw, 92px);
}

.contact-hero::before,
.contact-hero::after {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgb(16 30 102 / 14%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.contact-hero::before {
    right: -86px;
    top: 20px;
}

.contact-hero::after {
    right: 124px;
    top: 108px;
}

.contact-hero-kicker {
    position: relative;
    z-index: 1;
    color: #111;
    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.contact-hero-copy {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #222428;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(38px, 5.2vw, 56px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0;
}

.contact-map-section {
    height: 330px;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-content-section {
    display: grid;
    grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 96px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 28px 42px;
}

.contact-appointment-strip {
    margin-top: 18px;
}

.contact-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.contact-side h2 {
    max-width: 170px;
    margin: 0;
    color: #111;
    font-size: clamp(32px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.contact-side-line {
    display: none;
}

.contact-side a {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-side a:first-of-type {
    margin-top: 34px;
}

.contact-side a:hover {
    color: var(--brand-blue);
}

.contact-main {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.contact-address-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.9fr);
    gap: 22px;
    padding: 24px 28px;
    background: #f5fbfd;
}

.contact-panel-label {
    display: block;
    margin-bottom: 9px;
    color: var(--brand-blue);
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-address-panel address,
.contact-address-panel p {
    margin: 0;
    color: #25282c;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
}

.contact-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #25282c;
    font-size: 14px;
    font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid #d9dde2;
    border-radius: 0;
    background: #fff;
    color: #222428;
    font: inherit;
    font-size: 14px;
    outline: 0;
}

.contact-field input,
.contact-field select {
    padding: 10px 14px;
}

.contact-field select {
    appearance: none;
    background: #efefef;
}

.contact-field textarea {
    min-height: 126px;
    padding: 14px;
    resize: vertical;
}

.contact-field textarea::placeholder {
    color: #999;
    font-weight: 700;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgb(7 141 189 / 12%);
}

.contact-submit {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-width: 154px;
    min-height: 46px;
    margin-top: 2px;
    padding: 12px 28px;
    border: 0;
    border-radius: 28px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #057da8;
    transform: translateY(-1px);
}

.contact-submit i {
    font-size: 9px;
}

@media (min-width: 768px) {
    .specialization-content h2 span {
        white-space: nowrap;
    }
}

@media (max-width: 1399.98px) {
    .services-showcase-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr) minmax(320px, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(190px, 1.1fr) minmax(100px, 0.55fr) minmax(170px, 0.9fr) minmax(170px, 0.9fr) minmax(220px, 1fr);
        gap: 28px 22px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 70px;
        --topbar-height: 0px;
    }

    .topbar {
        display: none;
    }

    .navbar {
        min-height: var(--header-height);
        padding: 8px 0;
    }

    .navbar-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .navbar-brand {
        width: auto;
    }

    .navbar-brand img {
        width: 160px;
    }

    .navbar-collapse {
        margin-top: 8px;
        padding: 12px 16px 18px;
        border-top: 1px solid #e8e8e8;
        background: #fff;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar .nav-link {
        padding: 10px 0 !important;
    }

    .navbar-actions {
        gap: 12px;
        padding-top: 8px;
    }

    .contact-button {
        min-height: 42px;
    }

    .hero-section,
    .hero-container {
        min-height: calc(100svh - var(--header-height));
    }

    .hero-copy {
        width: min(680px, 88%);
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 7vw, 54px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-arrow-prev {
        left: 18px;
    }

    .hero-arrow-next {
        right: 18px;
    }

    .core-features-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .core-features-intro {
        order: -1;
        padding: 64px 40px;
    }

    .core-features-intro h2 br {
        display: none;
    }

    .core-features-intro p {
        max-width: 560px;
    }

    .read-more-button {
        margin-top: 28px;
    }

    .core-features-main {
        padding: 64px 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 36px;
        max-width: none;
    }

    .features-image {
        grid-column: 1 / -1;
        min-height: 280px;
    }

    .management-section {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
        min-height: 610px;
    }

    .management-content {
        padding: 42px 40px 48px;
    }

    .management-kicker {
        margin-bottom: 42px;
        font-size: 13px;
        letter-spacing: 4px;
    }

    .management-content h2 {
        margin-bottom: 26px;
        font-size: 40px;
    }

    .management-content p {
        margin-bottom: 38px;
        font-size: 17px;
    }

    .management-list {
        gap: 14px;
        margin-bottom: 42px;
    }

    .management-list li {
        font-size: 16px;
    }

    .management-list li::before {
        font-size: 20px;
    }

    .management-button {
        min-width: 142px;
        min-height: 46px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .agency-statement {
        min-height: 760px;
        padding-top: 70px;
    }

    .agency-statement-copy {
        font-size: clamp(30px, 4.5vw, 40px);
    }

    .agency-statement-link {
        margin-top: 60px;
        font-size: 17px;
    }

    .agency-mark {
        margin-top: 76px;
        margin-bottom: -54px;
        font-size: clamp(300px, 48vw, 420px);
    }

    .services-showcase-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .services-showcase-intro {
        padding: 64px 40px;
    }

    .services-showcase-list {
        border-right: 0;
    }

    .services-showcase-list article {
        padding: 28px 32px;
    }

    .services-showcase-summary {
        grid-column: 1 / -1;
        padding: 60px 40px;
        border-top: 1px solid rgb(255 255 255 / 45%);
    }

    .services-showcase-summary p {
        max-width: 620px;
    }

    .testimonial-content {
        grid-template-columns: minmax(270px, 380px) minmax(0, 1fr);
        gap: 55px;
    }

    .testimonial-image {
        height: 430px;
    }

    .testimonial-quote p {
        font-size: 20px;
    }

    .specialization-section {
        grid-template-columns: 1fr 1fr;
        min-height: 540px;
    }

    .specialization-content {
        padding: 62px 40px;
    }

    .specialization-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .navbar-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .navbar-brand img {
        width: 145px;
    }

    .hero-section,
    .hero-container {
        min-height: 610px;
    }

    .hero-section::before {
        inset: 0;
        background-position: 62% center;
    }

    .hero-slide-two::before {
        background-position: 68% center;
    }

    .hero-slide-three::before {
        background-position: 60% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgb(5 10 18 / 82%) 0%, rgb(5 10 18 / 62%) 65%, rgb(5 10 18 / 38%) 100%);
    }

    .hero-container {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-copy {
        width: 100%;
        padding-top: 76px;
        padding-bottom: 92px;
        text-align: center;
    }

    .hero-eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0;
    }

    .hero-copy h1 {
        margin-bottom: 14px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-copy h1 br,
    .hero-description br {
        display: none;
    }

    .hero-copy h2 {
        margin-bottom: 16px;
        font-size: clamp(20px, 6vw, 26px);
    }

    .hero-description {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-button {
        min-width: 150px;
        min-height: 46px;
        padding: 11px 18px;
        font-size: 12px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-indicators {
        bottom: 20px;
        gap: 7px;
    }

    .hero-indicators [data-bs-target] {
        width: 24px;
        height: 3px;
    }

    .hero-indicators [data-bs-target].active {
        width: 38px;
        height: 3px;
    }

    .core-features-intro,
    .core-features-main {
        padding: 48px 20px;
    }

    .section-kicker {
        margin-bottom: 18px;
    }

    .core-features-intro h2 {
        margin-bottom: 18px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
    }

    .core-features-intro p {
        font-size: 13px;
    }

    .features-grid {
        gap: 36px 20px;
    }

    .feature-item img {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

    .feature-item h3 {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .features-image {
        min-height: 220px;
    }

    .management-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .management-content {
        min-width: 0;
        padding: 42px 20px 46px;
    }

    .management-kicker {
        margin-bottom: 34px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .management-content h2 {
        margin-bottom: 20px;
        max-width: 100%;
        font-size: clamp(30px, 9vw, 36px);
        overflow-wrap: anywhere;
    }

    .management-content p {
        width: 100%;
        max-width: 540px;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .management-list {
        gap: 12px;
        margin-bottom: 34px;
    }

    .management-list li {
        font-size: 14px;
    }

    .management-list li::before {
        margin-right: 10px;
        font-size: 17px;
    }

    .management-button {
        min-width: 138px;
        min-height: 44px;
        padding: 9px 18px;
        border-width: 1px;
        font-size: 13px;
    }

    .management-image {
        aspect-ratio: 4 / 3;
    }

    .agency-statement {
        min-height: 610px;
        padding: 52px 20px 0;
    }

    .agency-statement-copy {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.25;
        letter-spacing: -0.8px;
    }

    .agency-statement-copy br {
        display: none;
    }

    .agency-statement-link {
        gap: 16px;
        margin-top: 38px;
        font-size: 15px;
    }

    .agency-mark {
        margin-top: 58px;
        margin-bottom: -36px;
        font-size: clamp(250px, 75vw, 360px);
    }

    .services-showcase-image {
        height: 360px;
    }

    .services-showcase-image img {
        object-position: center;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-intro {
        padding: 48px 20px;
    }

    .services-showcase-kicker {
        margin-bottom: 28px;
        font-size: 11px;
        letter-spacing: 4px;
    }

    .services-showcase-intro h2 {
        font-size: 42px;
    }

    .services-showcase-list {
        border-top: 1px solid rgb(255 255 255 / 45%);
        border-left: 0;
    }

    .services-showcase-list article {
        grid-template-columns: 38px 1fr;
        padding: 28px 20px;
    }

    .services-showcase-list h3 {
        font-size: 20px;
    }

    .services-showcase-summary {
        grid-column: auto;
        padding: 44px 20px 50px;
    }

    .services-showcase-summary strong {
        margin-bottom: 22px;
        font-size: 52px;
    }

    .services-showcase-summary p {
        margin-bottom: 34px;
        font-size: 16px;
        line-height: 1.65;
    }

    .services-showcase-summary a {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 52px 20px;
    }

    .testimonials-heading h2 {
        margin-top: 20px;
        font-size: 36px;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 42px;
    }

    .testimonial-image {
        width: min(100%, 430px);
        height: auto;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }

    .testimonial-quote {
        max-width: 540px;
        margin: 0 auto;
    }

    .testimonial-quote-mark {
        height: 54px;
        margin-bottom: 14px;
        font-size: 76px;
    }

    .testimonial-quote p {
        font-size: 18px;
        line-height: 1.5;
    }

    .specialization-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .specialization-image {
        aspect-ratio: 4 / 3;
    }

    .specialization-content {
        padding: 48px 20px 52px;
    }

    .specialization-kicker {
        margin-bottom: 22px;
    }

    .specialization-content h2 {
        font-size: 32px;
    }

    .specialization-content h2 br {
        display: none;
    }

}

@media (max-width: 480px) {
    .hero-section,
    .hero-container {
        min-height: 570px;
    }

    .hero-copy {
        padding-top: 62px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-button {
        min-width: 0;
        width: min(210px, 100%);
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding-bottom: 28px;
        border-bottom: 1px solid rgb(7 141 189 / 18%);
    }

    .features-image {
        grid-column: 1;
        min-height: 200px;
    }

    .management-content {
        padding: 36px 16px 40px;
    }

    .management-content h2 {
        font-size: 29px;
        line-height: 1.15;
    }

    .management-content h2 br {
        display: block;
    }

    .management-content p {
        font-size: 13px;
    }

    .management-image {
        aspect-ratio: 1 / 1;
    }

    .agency-statement {
        min-height: 540px;
        padding-top: 42px;
    }

    .agency-statement-copy {
        font-size: 22px;
    }

    .agency-mark {
        margin-top: 46px;
        margin-bottom: -24px;
        font-size: 230px;
    }

    .services-showcase-image {
        height: 280px;
    }

    .services-showcase-intro h2 {
        font-size: 36px;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }

    .testimonial-quote p {
        font-size: 16px;
    }

    .specialization-image {
        aspect-ratio: 1 / 1;
    }

    .specialization-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    .blog-section {
        padding-right: 40px;
        padding-left: 40px;
    }

    .blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-kicker {
        margin-bottom: 32px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 0;
        margin-top: 58px;
    }

    .blog-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        padding-left: 0;
        border-left: 0;
    }

    .appointment-strip {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-strip div,
    .appointment-strip a {
        min-height: 64px;
        padding: 16px 28px;
    }

    .site-footer {
        padding: 72px 40px 32px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 40px;
    }

    .footer-about,
    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-newsletter form {
        max-width: 560px;
        margin-top: 28px;
    }

    .footer-copyright {
        margin-top: 58px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 52px 20px 0;
    }

    .blog-header h2 {
        font-size: 38px;
    }

    .blog-header h2 br {
        display: none;
    }

    .blog-all-link {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 42px;
    }

    .blog-card,
    .blog-card:first-child,
    .blog-card:last-child,
    .blog-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        padding: 0 0 36px;
        border-bottom: 1px solid #d5d5d5;
        border-left: 0;
    }

    .blog-card h3 {
        font-size: 26px;
    }

    .blog-card p {
        font-size: 15px;
    }

    .appointment-strip {
        grid-template-columns: 1fr;
        margin-top: 26px;
        font-size: 14px;
    }

    .appointment-strip div,
    .appointment-strip a {
        min-height: 58px;
        padding: 14px 18px;
    }

    .site-footer {
        padding: 56px 20px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-about,
    .footer-newsletter {
        grid-column: auto;
    }

    .footer-logo {
        margin-bottom: 28px;
    }

    .footer-logo img {
        width: 210px;
    }

    .footer-about p {
        font-size: 15px;
        line-height: 1.75;
    }

    .footer-socials {
        margin-top: 30px;
    }

    .footer-column h2 {
        margin: 0 0 18px;
    }

    .footer-column a,
    .footer-contact address {
        font-size: 15px;
    }

    .footer-newsletter form {
        min-height: 66px;
        margin-top: 24px;
    }

    .footer-copyright {
        margin-top: 48px;
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 34px;
    }

    .blog-meta {
        gap: 12px;
    }

    .blog-meta span,
    .blog-meta time {
        font-size: 13px;
    }
}

.service-detail-hero {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(250px, 1fr) minmax(0, 2.8fr);
    min-height: 365px;
    padding: 50px 28px;
    overflow: hidden;
    background: #e7f7fc;
    color: #1e1e1e;
    font-family: "Inter", Arial, sans-serif;
}

.service-detail-kicker {
    position: relative;
    z-index: 2;
    align-self: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.service-detail-hero h1 {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0;
    font-size: clamp(74px, 7vw, 108px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.1px;
}

.service-detail-hero h1 span {
    white-space: nowrap;
}

.service-detail-curve {
    position: absolute;
    z-index: 1;
    border: 1px solid rgb(194 193 162 / 42%);
    border-radius: 50%;
    pointer-events: none;
}

.service-detail-curve-one {
    top: 28px;
    right: -190px;
    width: 490px;
    height: 490px;
}

.service-detail-curve-two {
    right: 190px;
    bottom: -390px;
    width: 580px;
    height: 580px;
}

@media (max-width: 991.98px) {
    .service-detail-hero {
        grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2fr);
        min-height: 330px;
        padding: 44px 24px;
    }

    .service-detail-hero h1 {
        font-size: clamp(58px, 8vw, 82px);
    }
}

@media (max-width: 767.98px) {
    .service-detail-hero {
        align-content: center;
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 310px;
        padding: 44px 20px;
    }

    .service-detail-kicker {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .service-detail-hero h1 {
        max-width: 100%;
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: 0.1px;
        overflow-wrap: anywhere;
    }

    .service-detail-hero h1 span {
        white-space: normal;
    }

    .service-detail-curve-one {
        right: -260px;
    }

    .service-detail-curve-two {
        right: -120px;
        bottom: -470px;
    }
}

@media (max-width: 374.98px) {
    .service-detail-hero h1 {
        font-size: 38px;
    }
}

.management-plan {
    position: relative;
    min-height: 635px;
    padding-bottom: 78px;
    background: #fff;
    font-family: "Inter", Arial, sans-serif;
}

.management-plan-image {
    width: 91%;
    height: 560px;
    overflow: hidden;
}

.management-plan-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.management-plan-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    min-height: 285px;
    padding: 42px clamp(48px, 6vw, 112px);
    background: #e7f7fc;
    color: #575757;
}

.management-plan-card::before {
    position: absolute;
    top: 38px;
    right: 30px;
    width: 280px;
    height: 1px;
    background: rgb(7 141 189 / 20%);
    content: "";
}

.management-plan-card p {
    max-width: 390px;
    margin: 0 0 40px;
    font-size: 20px;
    line-height: 1.35;
}

.management-plan-card a {
    display: inline-flex;
    align-items: center;
    gap: 70px;
    padding-bottom: 5px;
    border-bottom: 1px solid #242424;
    color: #242424;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.management-plan-card a i {
    font-size: 10px;
}

@media (max-width: 991.98px) {
    .management-plan {
        min-height: 560px;
    }

    .management-plan-image {
        width: 100%;
        height: 500px;
    }

    .management-plan-card {
        width: 48%;
        min-height: 260px;
        padding: 38px 40px;
    }

    .management-plan-card p {
        margin-bottom: 32px;
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .management-plan {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-bottom: 0;
    }

    .management-plan-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .management-plan-card {
        position: relative;
        width: 100%;
        min-height: auto;
        padding: 38px 20px 42px;
    }

    .management-plan-card::before {
        right: 20px;
        width: 120px;
    }

    .management-plan-card p {
        max-width: 520px;
        font-size: 16px;
    }
}

.management-offerings {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    gap: clamp(45px, 6vw, 105px);
    padding: 74px 28px 90px 54px;
    background: #fff;
    color: #242424;
    font-family: "Inter", Arial, sans-serif;
}

.management-offerings-content {
    min-width: 0;
}

.management-offerings-content h2 {
    margin: 0 0 24px;
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0px;
}

.management-offerings-intro {
    max-width: 800px;
    margin: 0 0 54px;
    color: #646464;
    font-size: 17px;
    line-height: 1.75;
}

.management-offerings-content h3 {
    margin: 0 0 30px;
    font-size: 30px;
    font-weight: 700;
}

.management-offerings-list,
.management-included-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.management-offerings-list {
    display: grid;
    gap: 22px;
}

.management-offerings-list li {
    position: relative;
    padding-left: 54px;
    color: #606060;
    font-size: 16px;
    line-height: 1.6;
}

.management-offerings-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ededed;
    color: #666;
    content: "\2197";
    font-size: 14px;
    place-items: center;
}

.management-included-title {
    margin-top: 58px !important;
}

.management-included-list {
    display: grid;
    gap: 15px;
}

.management-included-list li {
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 700;
}

.management-included-list li::before {
    margin-right: 16px;
    content: "+";
    font-size: 25px;
    font-weight: 400;
}

.management-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 190px;
    min-height: 48px;
    margin-top: 26px;
    padding: 9px 18px;
    border-radius: 40px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.management-contact-button i {
    font-size: 10px;
}

.management-offerings-image {
    min-width: 0;
    height: 840px;
    overflow: hidden;
}

.management-offerings-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .management-offerings {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
        gap: 42px;
        padding: 62px 40px 72px;
    }

    .management-offerings-content h2 {
        font-size: 42px;
    }

    .management-offerings-image {
        height: 720px;
    }
}

@media (max-width: 767.98px) {
    .management-offerings {
        grid-template-columns: 1fr;
        padding: 48px 20px 56px;
    }

    .management-offerings-content h2 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .management-offerings-content h2 br {
        display: none;
    }

    .management-offerings-intro {
        margin-bottom: 38px;
        font-size: 15px;
    }

    .management-offerings-content h3 {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .management-offerings-list li {
        padding-left: 45px;
        font-size: 14px;
    }

    .management-included-title {
        margin-top: 44px !important;
    }

    .management-contact-button {
        min-width: 175px;
        min-height: 46px;
        margin-top: 24px;
        padding: 8px 16px;
        font-size: 15px;
    }

    .management-offerings-image {
        order: -1;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

.management-process {
    padding: 78px 34px 100px;
    background: #fff;
    color: #242424;
    font-family: "Inter", Arial, sans-serif;
}

.management-process-intro {
    display: grid;
    gap: 28px;
}

.management-process-intro p {
    margin: 0;
    color: #606060;
    font-size: 16px;
    line-height: 1.65;
}

.management-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(42px, 7vw, 125px);
    margin-top: 54px;
}

.management-process-grid article {
    min-width: 0;
}

.management-process-grid span {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.management-process-grid i {
    display: block;
    width: 10px;
    height: 10px;
    margin: 24px 0 38px;
    border-radius: 50%;
    background: #242424;
}

.management-process-grid h2 {
    margin: 0 0 14px;
    font-size: clamp(25px, 2.2vw, 36px);
    font-weight: 700;
    line-height: 1.25;
}

.management-process-grid p {
    max-width: 270px;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .management-process {
        padding: 64px 40px 78px;
    }

    .management-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 65px;
    }

    .management-process-grid h2 {
        font-size: 29px;
    }
}

@media (max-width: 767.98px) {
    .management-process {
        padding: 48px 20px 58px;
    }

    .management-process-intro {
        gap: 20px;
    }

    .management-process-intro p {
        font-size: 14px;
    }

    .management-process-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 42px;
    }

    .management-process-grid article {
        padding-bottom: 32px;
        border-bottom: 1px solid #e1e1e1;
    }

    .management-process-grid i {
        margin: 18px 0 24px;
    }

    .management-process-grid h2 {
        font-size: 27px;
    }

    .management-process-grid p {
        max-width: 520px;
        font-size: 14px;
    }
}

.management-talent {
    position: relative;
    padding: 26px 38px 36px;
    background: #fff;
    font-family: "Inter", Arial, sans-serif;
}

.management-talent-image {
    height: 470px;
    overflow: hidden;
}

.management-talent-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.management-talent-stat {
    position: absolute;
    right: 64px;
    bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    min-height: 225px;
    background: rgb(12 12 12 / 92%);
    color: #fff;
    text-align: center;
}

.management-talent-stat strong {
    font-size: 58px;
    line-height: 1;
}

.management-talent-stat sup {
    position: relative;
    top: -18px;
    margin-left: 6px;
    font-size: 25px;
}

.management-talent-stat span {
    margin-top: 24px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .management-talent-image {
        height: 420px;
    }

    .management-talent-stat {
        right: 54px;
        width: 260px;
        min-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .management-talent {
        padding: 20px;
    }

    .management-talent-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .management-talent-stat {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 160px;
        padding: 24px;
    }

    .management-talent-stat strong {
        font-size: 48px;
    }

    .management-talent-stat span {
        margin-top: 14px;
        font-size: 18px;
    }
}

.management-faq {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.75fr);
    gap: clamp(55px, 10vw, 180px);
    padding: 70px 34px 20px;
    background: #fff;
    color: #242424;
    font-family: "Inter", Arial, sans-serif;
}

.management-faq > h2 {
    margin: 0;
    font-size: clamp(38px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.05;
}

.management-faq-list {
    min-width: 0;
    border-top: 1px solid #dedede;
}

.management-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.management-faq-item h3 {
    margin: 0;
}

.management-faq-item button {
    position: relative;
    width: 100%;
    padding: 22px 42px 22px 0;
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    overflow-wrap: anywhere;
}

.management-faq-item button::after {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #73c893;
    content: "\2212";
    font-size: 24px;
    font-weight: 400;
    transform: translateY(-50%);
}

.management-faq-item button.collapsed {
    color: #242424;
}

.management-faq-item button.collapsed::after {
    color: #242424;
    content: "+";
}

.management-faq-item p {
    max-width: 680px;
    margin: -4px 0 20px;
    color: #686868;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .management-faq {
        grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1.4fr);
        gap: 50px;
        padding: 62px 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .management-faq {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 48px 20px 28px;
    }

    .management-faq > h2 {
        max-width: 12ch;
        font-size: clamp(32px, 10vw, 38px);
    }

    .management-faq-item button {
        padding: 18px 34px 18px 0;
        font-size: 14px;
    }

    .management-faq-item button::after {
        right: 4px;
    }

    .management-faq-item p {
        max-width: 100%;
        font-size: 13px;
    }
}

@media (max-width: 374.98px) {
    .management-faq {
        padding-inline: 16px;
    }

    .management-faq-item button {
        padding-right: 30px;
        font-size: 13px;
    }
}

.about-hero,
.about-intro,
.about-delivered,
.about-story,
.about-team,
.about-testimonials,
.about-partners {
    font-family: "Inter", Arial, sans-serif;
}

.about-hero {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.5fr);
    min-height: 365px;
    padding: 52px 24px;
    overflow: hidden;
    background: #e7f7fc;
    color: #202124;
}

.about-kicker,
.about-section-kicker {
    display: inline-block;
    color: #202124;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.about-hero h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(56px, 5.4vw, 86px);
    font-weight: 600;
    line-height: 1.08;
}

.about-hero-curve {
    position: absolute;
    z-index: 1;
    border: 1px solid rgb(194 193 162 / 42%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-curve-one {
    top: 28px;
    right: -185px;
    width: 500px;
    height: 500px;
}

.about-hero-curve-two {
    right: 210px;
    bottom: -400px;
    width: 580px;
    height: 580px;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, 1fr);
    min-height: 560px;
    background: #fff;
}

.about-intro-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 54px clamp(34px, 4.2vw, 58px);
}

.about-intro-copy h2 {
    margin: 0 0 24px;
    color: #202124;
    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 700;
    line-height: 1.13;
}

.about-intro-copy p {
    max-width: 760px;
    margin: 0 0 18px;
    color: #5f5f5f;
    font-size: 18px;
    line-height: 1.55;
}

.about-intro-image {
    min-width: 0;
    overflow: hidden;
}

.about-intro-image img,
.about-delivered-image img,
.about-team img,
.about-testimonial-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-delivered {
    position: relative;
    padding: 54px 54px 62px;
    background: #fff;
}

.about-delivered-image {
    height: 500px;
    overflow: hidden;
}

.about-delivered-image::after {
    position: absolute;
    inset: 54px 54px 62px;
    background: rgb(44 102 115 / 38%);
    content: "";
    pointer-events: none;
}

.about-delivered-stat {
    position: absolute;
    right: 76px;
    bottom: 62px;
    display: grid;
    place-items: center;
    width: 300px;
    min-height: 235px;
    padding: 28px;
    background: rgb(9 9 9 / 92%);
    color: #fff;
    text-align: center;
}

.about-delivered-stat::before,
.about-delivered-stat::after {
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    background: rgb(255 255 255 / 14%);
    content: "";
}

.about-delivered-stat::before {
    right: -30px;
}

.about-delivered-stat::after {
    right: -60px;
    opacity: 0.65;
}

.about-delivered-stat strong {
    display: block;
    font-size: clamp(58px, 5vw, 76px);
    line-height: 1;
}

.about-delivered-stat span {
    display: block;
    margin-top: 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.about-story {
    padding: 64px 54px 70px;
    background: #fff;
    color: #202124;
}

.about-story-heading {
    text-align: center;
}

.about-section-kicker {
    padding-bottom: 6px;
    border-bottom: 1px solid #202124;
    font-size: 15px;
}

.about-story-heading h2 {
    margin: 34px 0 0;
    font-size: clamp(38px, 3.2vw, 52px);
    font-weight: 700;
    line-height: 1.17;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(38px, 6vw, 92px);
    margin-top: 50px;
}

.about-story-grid article {
    min-width: 0;
}

.about-story-grid span {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

.about-story-grid i {
    display: block;
    width: 11px;
    height: 11px;
    margin: 22px 0 34px;
    border-radius: 50%;
    background: #202124;
}

.about-story-grid h3 {
    margin: 0 0 16px;
    color: #202124;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1.22;
}

.about-story-grid p {
    margin: 0;
    color: #5f5f5f;
    font-size: 18px;
    line-height: 1.45;
}

.about-team {
    padding: 76px 54px 92px;
    background: #e7f7fc;
    color: #111;
}

.about-team-header {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.95fr) minmax(150px, 0.45fr);
    gap: clamp(48px, 7vw, 120px);
}

.about-team-header h2 {
    margin: 28px 0 0;
    font-size: clamp(42px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
}

.about-team-header p {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.about-team-header a {
    justify-self: end;
    padding-bottom: 6px;
    border-bottom: 1px solid #111;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 52px 46px;
    margin-top: 68px;
    text-align: left;
}

.about-team-grid article {
    min-height: 142px;
    padding: 28px 32px;
    border-radius: 8px;
    background: #fff;
}

.about-team-grid h3 {
    margin: 0 0 6px;
    color: #000;
    font-size: clamp(23px, 1.7vw, 28px);
    font-weight: 700;
    line-height: 1.12;
}

.about-team-grid p {
    margin: 0 0 18px;
    padding-bottom: 9px;
    border-bottom: 1px solid #edf0f2;
    color: #999;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-team-grid a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #1d242a;
    font-size: 15px;
    text-decoration: none;
}

.about-team-grid a:hover {
    color: var(--brand-blue);
}

.about-team-grid a i {
    color: var(--brand-blue);
    font-size: 12px;
}

.about-testimonials {
    padding: 62px 24px 0;
    background: #fff;
    color: #202124;
}

.about-testimonial-content {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(280px, 430px) minmax(0, 560px);
    gap: clamp(48px, 7vw, 120px);
    max-width: 1120px;
    margin: 56px auto 0;
}

.about-testimonial-carousel {
    padding-bottom: 58px;
}

.about-testimonial-carousel .carousel-item {
    transition: transform 0.65s ease-in-out;
}

.about-testimonial-image {
    height: 430px;
    overflow: hidden;
}

.about-testimonial-content blockquote {
    margin: 0;
}

.about-testimonial-content blockquote > span {
    display: block;
    height: 62px;
    margin-bottom: 16px;
    color: #252525;
    font-size: 96px;
    font-weight: 700;
    line-height: 0.8;
}

.about-testimonial-content blockquote p {
    margin: 0 0 24px;
    color: #252525;
    font-size: clamp(23px, 2.2vw, 32px);
    line-height: 1.32;
}

.about-testimonial-content footer {
    display: grid;
    gap: 8px;
    color: #202124;
}

.about-testimonial-content strong {
    font-size: 18px;
}

.about-testimonial-content small {
    color: #7a7a7a;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-testimonial-controls {
    margin-top: 36px;
}

.about-partners {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(160px, 0.7fr) minmax(420px, 1.4fr) minmax(420px, 1.35fr);
    gap: clamp(34px, 5vw, 72px);
    min-height: 300px;
    padding: 52px 28px;
    background: #f3f9fb;
    color: #111;
}

.about-partners h2 {
    margin: 0;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 700;
    line-height: 1.08;
}

.about-partners-content p {
    max-width: 560px;
    margin: 0 0 38px;
    color: #5b5b5b;
    font-size: 18px;
    line-height: 1.45;
}

.about-partner-logos {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 62px);
    color: #000;
}

.about-partner-logos span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-size: clamp(24px, 2.3vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.about-partner-logos span:first-child::before {
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-right: 12px;
    clip-path: polygon(0 0, 55% 50%, 0 100%, 28% 100%, 82% 50%, 28% 0);
    background: #000;
    content: "";
}

@media (max-width: 1199.98px) {
    .about-intro-copy p,
    .about-story-grid p,
    .about-team-header p,
    .about-partners-content p {
        font-size: 18px;
    }

    .about-team {
        padding-right: 40px;
        padding-left: 40px;
    }

    .about-team-grid {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    .about-hero,
    .about-intro,
    .about-team-header,
    .about-partners {
        grid-template-columns: 1fr;
    }

    .about-hero {
        gap: 30px;
        min-height: 330px;
    }

    .about-intro-image {
        min-height: 420px;
    }

    .about-delivered {
        padding: 48px 40px 62px;
    }

    .about-delivered-image {
        height: 440px;
    }

    .about-delivered-image::after {
        inset: 48px 40px 62px;
    }

    .about-delivered-stat {
        right: 62px;
        width: 270px;
        min-height: 215px;
    }

    .about-delivered-stat span {
        font-size: 25px;
    }

    .about-story-grid,
    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-team-header a {
        justify-self: start;
    }

    .about-testimonial-content {
        grid-template-columns: 1fr;
        gap: 42px;
        max-width: 680px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 44px 20px;
    }

    .about-kicker,
    .about-section-kicker {
        font-size: 11px;
        letter-spacing: 5px;
    }

    .about-hero h1 {
        font-size: clamp(40px, 11vw, 56px);
    }

    .about-intro-copy {
        padding: 48px 20px;
    }

    .about-intro-copy h2,
    .about-story-heading h2,
    .about-team-header h2,
    .about-partners h2 {
        font-size: 34px;
    }

    .about-intro-copy h2 br,
    .about-story-heading h2 br {
        display: none;
    }

    .about-intro-copy p,
    .about-story-grid p,
    .about-team-header p,
    .about-partners-content p {
        font-size: 15px;
    }

    .about-intro-image {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-delivered {
        padding: 36px 20px 0;
    }

    .about-delivered-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-delivered-image::after {
        inset: 36px 20px 0;
    }

    .about-delivered-stat {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 190px;
    }

    .about-delivered-stat::before,
    .about-delivered-stat::after {
        display: none;
    }

    .about-story {
        padding: 56px 20px;
    }

    .about-story-heading h2 {
        margin-top: 28px;
    }

    .about-story-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-story-grid h3 {
        font-size: 28px;
    }

    .about-story-grid i {
        margin: 18px 0 24px;
    }

    .about-team {
        padding: 56px 20px 68px;
    }

    .about-team-header {
        gap: 30px;
    }

    .about-team-header h2 {
        margin-top: 28px;
    }

    .about-team-grid {
        margin-top: 44px;
    }

    .about-team-grid img {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .about-team-grid h3 {
        margin-top: 24px;
        font-size: 30px;
    }

    .about-team-grid p {
        font-size: 17px;
    }

    .about-testimonials {
        padding: 48px 20px 0;
    }

    .about-testimonial-content {
        margin-top: 34px;
    }

    .about-testimonial-image {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .about-testimonial-content blockquote > span {
        height: 48px;
        font-size: 72px;
    }

    .about-testimonial-content blockquote p {
        font-size: 18px;
    }

    .about-partners {
        gap: 28px;
        min-height: auto;
        padding: 42px 20px;
    }

    .about-partners-content p {
        margin-bottom: 26px;
    }

    .about-partner-logos {
        flex-wrap: wrap;
    }
}

@media (max-width: 991.98px) {
    .contact-hero,
    .contact-content-section,
    .contact-address-panel {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        gap: 22px;
        min-height: 250px;
    }

    .contact-content-section {
        gap: 34px;
        padding-top: 50px;
    }

    .contact-side {
        align-items: flex-start;
        text-align: left;
    }

    .contact-side h2 {
        max-width: 100%;
    }

}

@media (max-width: 575.98px) {
    .contact-hero {
        min-height: 230px;
        padding: 34px 20px;
    }

    .contact-hero::before,
    .contact-hero::after {
        width: 280px;
        height: 280px;
    }

    .contact-hero::before {
        right: -160px;
    }

    .contact-hero::after {
        right: -20px;
        top: 130px;
    }

    .contact-hero-kicker {
        letter-spacing: 4px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-map-section {
        height: 300px;
    }

    .contact-content-section {
        padding: 42px 18px 56px;
    }

    .contact-address-panel {
        padding: 22px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }
}
