:root {
    --sd-navy: #0d2f4f;
    --sd-navy-2: #123f67;
    --sd-blue: #1565c0;
    --sd-blue-light: #eaf4ff;
    --sd-gold: #e8ad35;
    --sd-gold-dark: #c78916;
    --sd-green: #138a5b;
    --sd-ink: #172333;
    --sd-muted: #64748b;
    --sd-border: #dbe5ef;
    --sd-surface: #ffffff;
    --sd-bg: #f5f8fc;
    --sd-shadow: 0 18px 55px rgba(13, 47, 79, 0.12);
    --sd-shadow-sm: 0 10px 30px rgba(13, 47, 79, 0.09);
    --sd-radius: 22px;
}

/* How to Apply */
.sd-apply-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.sd-apply-guide-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border: 1px solid #dfe8ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 47, 79, 0.09);
}

.sd-apply-guide-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: #d9a72e;
    content: "";
}

.sd-apply-guide-card.existing::before {
    background: #173f68;
}

.sd-apply-guide-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.sd-apply-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff6dc;
    color: #b27b08;
    font-size: 20px;
}

.sd-apply-guide-card.existing .sd-apply-guide-icon {
    background: #eef5fb;
    color: #173f68;
}

.sd-apply-guide-card h3 {
    margin: 0;
    color: #102f4f;
    font-size: 24px;
    font-weight: 900;
}

.sd-apply-guide-card p {
    margin: 0 0 14px;
    color: #526475;
    font-size: 15px;
    line-height: 1.75;
}

.sd-apply-highlight {
    margin: 2px 0 18px;
    padding: 13px 15px;
    border-left: 4px solid #d9a72e;
    border-radius: 6px;
    background: #fffaf0;
    color: #4d3a08;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}

.sd-apply-guide-card.existing .sd-apply-highlight {
    border-left-color: #173f68;
    background: #f1f7fc;
    color: #255299;
}

.sd-apply-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-apply-steps li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 34px;
    color: #293b4c;
    font-size: 14px;
    line-height: 1.65;
}

.sd-apply-steps li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #255299;
    color: #ffffff;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 11px;
}

.sd-apply-guide-note {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #edf2f5;
    color: #7b5c13;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.sd-apply-guide-card.existing .sd-apply-guide-note {
    color: #255299;
}

@media screen and (max-width: 991px) {
    .sd-apply-guide-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .sd-apply-guide-card {
        padding: 22px 18px;
    }

    .sd-apply-guide-card h3 {
        font-size: 21px;
    }
}

html {
    scroll-behavior: smooth;
}

body.sd-scholarship-site {
    background: var(--sd-bg);
    color: var(--sd-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
}

body.sd-scholarship-site img {
    max-width: 100%;
}

body.sd-scholarship-site section[id] {
    scroll-margin-top: 120px;
}

/* Shared header refresh */
.sd-scholarship-site #header.sd-header {
    border-top-color: var(--sd-gold);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 35px rgba(13, 47, 79, 0.12);
}

.sd-scholarship-site .sd-header-main {
    background: #fff;
    border-bottom-color: #eef2f6;
}

.sd-scholarship-site .sd-header-top {
    position: relative;
    overflow: hidden;
    border-bottom: 0;
    background: linear-gradient(90deg, #09243d 0%, #0d3a61 52%, #123f67 100%);
}

.sd-scholarship-site .sd-header-top::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 65%, rgba(232, 173, 53, .16) 65% 75%, transparent 75%),
        linear-gradient(38deg, transparent 0 72%, rgba(255, 255, 255, .08) 72% 82%, transparent 82%);
    content: "";
    pointer-events: none;
}

.sd-scholarship-site .sd-header-top-row {
    position: relative;
    z-index: 1;
    min-height: 40px;
    gap: 18px;
}

.sd-scholarship-site .sd-header-info {
    gap: 10px;
    min-width: 0;
}

.sd-scholarship-site .sd-header-info a,
.sd-scholarship-site .sd-header-location {
    min-height: 28px;
    margin-right: 0;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    font-weight: 700;
}

.sd-scholarship-site .sd-header-location {
    color: #ffe0a1;
}

.sd-scholarship-site .sd-header-info i,
.sd-scholarship-site .sd-header-location i {
    margin-right: 7px;
    color: var(--sd-gold);
}

.sd-scholarship-site .sd-header-info a:hover {
    border-color: rgba(232, 173, 53, .55);
    background: rgba(232, 173, 53, .12);
    color: #fff;
}

.sd-scholarship-site .sd-header-social {
    gap: 7px;
}

.sd-scholarship-site .sd-header-social-label {
    margin-right: 2px;
    color: rgba(255, 255, 255, .74);
    font-size: 10px;
    letter-spacing: 1.2px;
}

.sd-scholarship-site .sd-header-social a {
    width: 28px;
    height: 28px;
    margin-left: 0;
    border-color: rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 12px;
}

.sd-scholarship-site .sd-header-social a:hover {
    border-color: var(--sd-gold);
    background: var(--sd-gold);
    color: #09243d;
}

.sd-scholarship-site .sd-brand {
    flex: 0 0 auto;
}

.sd-scholarship-site .sd-brand-logo img {
    width: 328px;
    max-height: 64px;
    object-fit: contain;
}

.sd-scholarship-site .sd-brand-copy {
    display: none;
}

.sd-scholarship-site .sd-brand-name {
    font-size: 18px;
}

.sd-scholarship-site .sd-brand-tagline {
    color: var(--sd-muted);
}

.sd-scholarship-site .sd-desktop-nav>li>a {
    color: var(--sd-navy);
}

.sd-scholarship-site .sd-desktop-nav>li>a:hover,
.sd-scholarship-site .sd-desktop-nav>li>a.active {
    color: var(--sd-blue);
}

.sd-scholarship-site .sd-desktop-nav .sd-login-link a,
.sd-scholarship-site .sd-header-apply {
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--sd-blue), #0f4c91) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.25);
}

.sd-scholarship-site .sd-desktop-nav .sd-login-link a:hover,
.sd-scholarship-site .sd-header-apply:hover {
    transform: translateY(-2px);
}

/* Shared page utilities */
.sd-page-shell {
    overflow: hidden;
}

.sd-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.sd-section {
    position: relative;
    padding: 40px 0;
    background: var(--sd-bg);
}

.sd-section+.sd-section {
    border-top: 1px solid #e5edf5;
}

.sd-section-soft {
    background: #eef5fc;
}

.sd-section-white {
    background: #fff;
}

.sd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--sd-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sd-eyebrow::before {
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--sd-gold);
    content: "";
}

.sd-section-title {
    margin: 0;
    color: var(--sd-navy);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.18;
}

.sd-section-lead {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--sd-muted);
    font-size: 16px;
    line-height: 1.75;
}

.sd-section-heading {
    max-width: 820px;
    margin: 0 auto 36px;
}

.sd-section-heading.text-center .sd-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.sd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.sd-primary-btn,
.sd-secondary-btn,
.sd-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 21px;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    transition: .25s ease;
}

.sd-primary-btn {
    background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-dark));
    color: #14283c !important;
    box-shadow: 0 10px 28px rgba(232, 173, 53, .3);
}

.sd-secondary-btn {
    background: var(--sd-blue);
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(21, 101, 192, .25);
}

.sd-outline-btn {
    border: 1px solid var(--sd-border);
    background: #fff;
    color: var(--sd-navy) !important;
}

.sd-primary-btn:hover,
.sd-secondary-btn:hover,
.sd-outline-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--sd-shadow-sm);
}

/* Home hero and slider */
.sd-home-hero {
    position: relative;
    padding: 0;
    background: #f4f6f8;
    color: var(--sd-ink);
}

.sd-home-hero::after {
    display: none;
}

.sd-slider-card {
    width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f4f6f8;
    box-shadow: none;
}

.sd-slider-card #myCarousel {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #f4f6f8;
    touch-action: pan-y;
}

.sd-slider-card #myCarousel .carousel-inner {
    width: 100%;
    overflow: hidden;
}

.sd-slider-card #myCarousel .item {
    width: 100%;
}

.sd-slider-card #myCarousel .slider-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 37.5%;
    overflow: hidden;
    background: #f4f6f8;
}

.sd-slider-card #myCarousel .slider-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.sd-slider-card #myCarousel .slider-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.sd-slider-card #myCarousel .carousel-control {
    z-index: 2;
    width: 12%;
    opacity: .9;
}

.sd-slider-card #myCarousel .carousel-control.left {
    background-image: linear-gradient(to right, rgb(41 215 255 / 25%) 0, rgba(0, 0, 0, .0001) 100%);
}

.sd-slider-card #myCarousel .carousel-control.right {
    background-image: linear-gradient(to left, rgb(41 215 255 / 25%) 0, rgba(0, 0, 0, .0001) 100%);
}

.sd-slider-card #myCarousel .carousel-indicators {
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.sd-slider-card #myCarousel .carousel-indicators li {
    display: block;
    flex: 0 0 auto;
    float: none;
    width: 10px;
    height: 10px;
    margin: 0;
    border: 1px solid #024f9a;
    border-radius: 50%;
    background: transparent;
}

.sd-slider-card #myCarousel .carousel-indicators li.active {
    width: 26px;
    height: 10px;
    margin: 0;
    border-color: #024f9a;
    border-radius: 10px;
    background: #024f9a;
}

.sd-fallback-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    padding: 34px;
    background: linear-gradient(to top, rgba(7, 38, 63, .84), rgba(7, 38, 63, .05)), url('../home_slider/slider2.jpg') center/cover;
}

.sd-fallback-hero h2 {
    max-width: 460px;
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

/* Home content */
.sd-quick-strip {
    position: relative;
    z-index: 2;
    margin-top: 32px;
}

.sd-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--sd-shadow);
}

.sd-quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 22px;
    border-right: 1px solid var(--sd-border);
    color: var(--sd-ink);
}

.sd-quick-item:last-child {
    border-right: 0;
}

.sd-quick-icon {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--sd-blue-light);
    color: var(--sd-blue);
    font-size: 20px;
    overflow: hidden;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}

.sd-quick-icon::after {
    position: absolute;
    right: 8px;
    bottom: 7px;
    left: 8px;
    height: 3px;
    border-radius: 99px;
    background: var(--sd-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
}

.sd-quick-icon i {
    position: relative;
    z-index: 1;
    transition: transform .3s ease;
}

.sd-quick-item strong {
    display: block;
    color: var(--sd-navy);
    font-size: 16px;
}

.sd-quick-item small {
    color: var(--sd-muted);
}

.sd-quick-item:hover {
    background: #f8fbff;
}

.sd-quick-item:hover .sd-quick-icon {
    background: var(--sd-blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(21, 101, 192, .22);
    transform: translateY(-5px) scale(1.04);
}

.sd-quick-item:hover .sd-quick-icon::after {
    transform: scaleX(1);
}

.sd-quick-item:hover .sd-quick-icon i {
    transform: translateY(-2px);
}

.sd-home-gallery-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

.sd-home-gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.sd-home-gallery-card {
    position: relative;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #e9f1f8;
    box-shadow: 0 12px 30px rgba(13, 47, 79, .1);
}

.sd-home-gallery-wide {
    grid-row: 1 / span 2;
}

.sd-home-gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.sd-home-gallery-scholarship,
.sd-home-gallery-docs {
    background: linear-gradient(180deg, #fff 0%, #eef6ff 100%);
}

.sd-home-gallery-scholarship img,
.sd-home-gallery-docs img {
    object-fit: contain;
    /* padding: 18px; */
}

.sd-home-gallery-card:hover img {
    transform: scale(1.035);
}

.sd-home-gallery-scholarship:hover img,
.sd-home-gallery-docs:hover img {
    transform: scale(1.02);
}

.sd-home-gallery-card::after {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(to top, rgba(7, 28, 48, .72), transparent);
    content: "";
}

.sd-home-gallery-card figcaption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .2px;
}

.sd-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(13, 47, 79, .1);
}

.sd-image-stack {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 0;
    background: #dbe8f4;
    box-shadow: none;
}

.sd-image-stack::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: var(--sd-gold);
    content: "";
}

.sd-image-stack .sd-main-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 720 / 820;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

.sd-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 42px;
    border: 0;
    border-left: 5px solid var(--sd-blue);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.sd-check-list {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.sd-check-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 32px;
    color: #405166;
}

.sd-check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 11px;
    line-height: 22px;
    text-align: center;
}

.sd-home-decor-section {
    overflow: hidden;
}

.sd-home-decor-section>.sd-container {
    position: relative;
    z-index: 1;
}

.sd-home-decor-section::before {
    position: absolute;
    top: 34px;
    left: 32px;
    width: 132px;
    height: 132px;
    background-image: url("data:image/svg+xml,%3Csvg width='132' height='132' viewBox='0 0 132 132' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231565c0' stroke-opacity='.08' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 40h31c9 0 15 6 15 15v43c0-9-6-15-15-15H28z'/%3E%3Cpath d='M104 40H74c-9 0-15 6-15 15v43c0-9 6-15 15-15h30z'/%3E%3Cpath d='M38 53h20M38 65h20M80 53h13M80 65h13'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
}

.sd-home-decor-section::after {
    position: absolute;
    right: -82px;
    bottom: 34px;
    width: 260px;
    height: 150px;
    border: 24px solid rgba(232, 173, 53, .1);
    border-left-color: rgba(21, 101, 192, .09);
    border-radius: 999px;
    content: "";
    pointer-events: none;
    transform: rotate(-18deg);
}

.sd-home-decor-alt::before {
    right: 34px;
    left: auto;
    background-image: url("data:image/svg+xml,%3Csvg width='132' height='132' viewBox='0 0 132 132' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23138a5b' stroke-opacity='.08' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M38 24h38l18 18v66H38z'/%3E%3Cpath d='M76 24v18h18'/%3E%3Cpath d='M50 69l12 12 24-30'/%3E%3C/g%3E%3C/svg%3E");
}

.sd-home-bg-badges {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.sd-home-bg-badges span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(13, 47, 79, .08);
    border-radius: 50%;
    color: rgba(13, 47, 79, .16);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-10deg);
}

.sd-home-bg-badges span::before {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(232, 173, 53, .13);
    border-radius: 50%;
    content: "";
}

.sd-home-bg-badges span:nth-child(1) {
    top: 38px;
    right: 4%;
}

.sd-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sd-feature-card {
    position: relative;
    min-height: 210px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 47, 79, .07);
    transition: .22s ease;
}

.sd-feature-card:hover {
    transform: translateY(-4px);
    border-color: #bfd3e8;
    box-shadow: 0 16px 36px rgba(13, 47, 79, .11);
}

.sd-feature-card .sd-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #eaf4ff;
    color: var(--sd-blue);
    font-size: 22px;
}

.sd-feature-card h3 {
    margin: 0 0 10px;
    color: var(--sd-navy);
    font-size: 21px;
    font-weight: 800;
}

.sd-feature-card p {
    margin: 0;
    color: var(--sd-muted);
}

.sd-feature-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 68px;
    height: 4px;
    background: var(--sd-gold);
    content: "";
}

.sd-assistance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sd-assistance-card {
    position: relative;
    min-height: 250px;
    padding: 30px 26px 28px;
    overflow: hidden;
    border: 1px solid #dce7f1;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 30px rgba(13, 47, 79, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.sd-assistance-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sd-gold), var(--sd-blue));
    content: "";
}

.sd-assistance-card::after {
    position: absolute;
    right: -26px;
    top: 18px;
    color: rgba(13, 47, 79, .045);
    content: attr(data-step);
    font-size: 92px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.sd-assistance-card:hover {
    transform: translateY(-6px);
    border-color: #bfd3e8;
    box-shadow: 0 20px 44px rgba(13, 47, 79, .13);
}

.sd-assistance-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--sd-gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.sd-assistance-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    border-radius: 50%;
    background: #fff6dc;
    color: var(--sd-gold-dark);
    font-size: 21px;
    box-shadow: inset 0 0 0 1px rgba(232, 173, 53, .24);
    transition: background .28s ease, color .28s ease, transform .28s ease;
}

.sd-assistance-card:hover .sd-assistance-icon {
    background: var(--sd-blue);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.sd-assistance-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--sd-navy);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
}

.sd-assistance-card .sd-managed-content {
    position: relative;
    z-index: 1;
    color: #566b80;
    font-size: 14px;
    line-height: 1.72;
}

.sd-assistance-card .sd-managed-content p {
    margin: 0 0 12px;
}

.sd-assistance-card .sd-managed-content p:last-child {
    margin-bottom: 0;
}

.sd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
}

.sd-process-card {
    position: relative;
    min-height: 176px;
    padding: 26px 22px;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13, 47, 79, .06);
    counter-increment: step;
}

.sd-process-card::before {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--sd-navy);
    color: #fff;
    content: counter(step, decimal-leading-zero);
    font-weight: 900;
}

.sd-process-card:not(:last-child)::after {
    position: absolute;
    top: 48px;
    right: -18px;
    z-index: 2;
    width: 34px;
    height: 2px;
    background: var(--sd-gold);
    content: "";
}

.sd-process-card h3 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: 18px;
    font-weight: 800;
}

.sd-process-card p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 14px;
}

.sd-mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    perspective: 1200px;
}

.sd-mvg-card {
    position: relative;
    min-height: 360px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    outline: 0;
    perspective: 1200px;
}

.sd-mvg-card-inner {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 360px;
    transform-style: preserve-3d;
    transition: transform .72s cubic-bezier(.2, .75, .25, 1);
}

.sd-mvg-card:hover .sd-mvg-card-inner,
.sd-mvg-card:focus-within .sd-mvg-card-inner,
.sd-mvg-card:focus .sd-mvg-card-inner {
    transform: rotateY(180deg);
}

.sd-mvg-card-face {
    position: relative;
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 30px;
    overflow: visible;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    backface-visibility: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(13, 47, 79, .09);
}

.sd-mvg-card-face::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78px;
    height: 4px;
    background: var(--sd-gold);
    content: "";
}

.sd-mvg-card-front {
    justify-content: flex-start;
}

.sd-mvg-card-back {
    justify-content: center;
    border-color: rgba(232, 173, 53, .35);
    background: linear-gradient(145deg, #0d2f4f 0%, #155f9e 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.sd-mvg-card-back::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    content: "";
    pointer-events: none;
}

.sd-mvg-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.sd-mvg-card .sd-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 8px;
    background: var(--sd-blue-light);
    color: var(--sd-blue);
    font-size: 22px;
}

.sd-mvg-card h3 {
    margin: 0;
    color: var(--sd-navy);
    font-size: 22px;
    font-weight: 850;
}

.sd-mvg-card-back h3 {
    color: #fff;
}

.sd-mvg-card p {
    margin: 0 0 18px;
    color: var(--sd-muted);
    font-size: 15px;
    line-height: 1.7;
}

.sd-mvg-card-back p,
.sd-mvg-card-back li {
    color: rgba(255, 255, 255, .86);
}

.sd-mvg-card-back ul,
.sd-mvg-card-back ol {
    color: rgba(255, 255, 255, .86);
}

.sd-mvg-card-back .sd-managed-content,
.sd-mvg-card-back .sd-managed-content p,
.sd-mvg-card-back .sd-managed-content li,
.sd-mvg-card-back .sd-managed-content span,
.sd-mvg-card-back .sd-managed-content strong {
    color: rgba(255, 255, 255, .88) !important;
}

.sd-mvg-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-mvg-card li {
    position: relative;
    margin: 11px 0;
    padding-left: 26px;
    color: #405166;
    font-size: 14px;
    line-height: 1.55;
}

.sd-mvg-card li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 9px;
    line-height: 18px;
    text-align: center;
}

.sd-mvg-card-back li::before {
    background: rgba(255, 255, 255, .14);
    color: var(--sd-gold);
}

/* Home FAQ */
.sd-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.sd-faq-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #dce7f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(13, 47, 79, .09);
}

.sd-faq-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82px;
    height: 5px;
    background: var(--sd-gold);
    content: "";
}

.sd-faq-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.sd-faq-list {
    width: 100%;
    max-width: none;
    margin: 0;
}

.sd-faq-list .sd-faq-item {
    width: 100%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--sd-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13, 47, 79, .06);
}

.sd-faq-list .panel-heading {
    padding: 0;
    border: 0;
    background: transparent;
}

.sd-faq-list .panel-title>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    color: var(--sd-navy);
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.sd-faq-list .panel-title>a i {
    color: var(--sd-blue);
    transition: transform .2s ease;
}

.sd-faq-list .panel-title>a:not(.collapsed) i {
    transform: rotate(45deg);
}

.sd-faq-list .panel-body {
    padding: 0 22px 22px;
    border-top: 0 !important;
    color: var(--sd-muted);
    line-height: 1.75;
}

.sd-docs-panel {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
    padding: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sd-navy), var(--sd-navy-2));
    color: #fff;
    box-shadow: 0 16px 42px rgba(13, 47, 79, .16);
}

.sd-docs-panel h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
}

.sd-docs-panel p {
    color: rgba(255, 255, 255, .76);
}

.sd-doc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sd-doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.sd-doc-item i {
    color: #ffd36f;
}

.sd-home-cta {
    padding: 44px;
    border: 1px solid #d8e6f3;
    border-radius: 8px;
    background: linear-gradient(120deg, #eaf4ff, #fff8e8);
    box-shadow: 0 12px 30px rgba(13, 47, 79, .08);
    text-align: center;
}

.sd-home-cta h2 {
    margin: 0 0 10px;
    color: var(--sd-navy);
    font-size: 36px;
    font-weight: 900;
}

.sd-home-cta p {
    max-width: 680px;
    margin: 0 auto 24px;
    color: var(--sd-muted);
}

/* Activity modal */
.activity-popup-modal {
    z-index: 10050;
    padding: 24px 0 !important;
}

.modal-backdrop {
    z-index: 10040;
}

.activity-popup-modal .modal-dialog {
    width: min(850px, calc(100% - 30px));
    margin: 0 auto;
}

.activity-popup-modal .modal-content {
    width: 100%;
    max-height: calc(100vh - 48px);
    padding: 24px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.activity-popup-modal .modal-body {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
}

.activity-popup-close {
    position: absolute;
    top: 7px;
    right: 12px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #718096;
    font-size: 31px;
}

.activity-popup-list {
    display: grid;
    gap: 15px;
    padding-top: 12px;
}

.activity-popup-card {
    display: grid;
    grid-template-columns: 105px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--sd-border);
    border-radius: 16px;
    background: #fff;
}

.activity-popup-image {
    width: 105px;
    height: 82px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--sd-bg);
}

.activity-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-popup-title {
    margin: 0 0 5px;
    color: var(--sd-navy);
    font-size: 18px;
    font-weight: 800;
}

.activity-popup-description {
    margin: 0;
    color: var(--sd-muted);
    font-size: 13px;
}

.activity-popup-read-more {
    padding: 9px 13px;
    border-radius: 9px;
    background: var(--sd-blue);
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
}

/* Inner page hero */
.sd-inner-hero {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #092b49, #155f91);
    color: #fff;
}

.sd-inner-hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 10%, rgba(255, 211, 111, .24), transparent 30%);
    content: "";
}

.sd-inner-hero .sd-container {
    position: relative;
    z-index: 1;
}

.sd-inner-hero h1 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
}

.sd-inner-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.sd-breadcrumb {
    margin-top: 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.sd-breadcrumb a {
    color: #ffd36f;
}

/* Light inner page intro */
.sd-page-intro {
    position: relative;
    overflow: hidden;
    padding: 46px 0 40px;
    border-bottom: 1px solid #e2ebf4;
    background:
        linear-gradient(128deg, transparent 0 58%, rgba(232, 173, 53, .13) 58% 70%, transparent 70%),
        linear-gradient(38deg, transparent 0 69%, rgba(19, 138, 91, .08) 69% 81%, transparent 81%),
        #fff;
}

.sd-page-intro::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sd-gold), var(--sd-blue), var(--sd-green));
    content: "";
}

.sd-page-intro::after {
    position: absolute;
    right: -120px;
    bottom: -78px;
    width: 420px;
    height: 220px;
    border: 28px solid rgba(21, 101, 192, .08);
    border-left-color: rgba(232, 173, 53, .16);
    border-radius: 999px;
    content: "";
    transform: rotate(-14deg);
}

.sd-page-intro .sd-container::before {
    position: absolute;
    inset: -18px 0 auto 0;
    z-index: -1;
    height: 150px;
    background-image:
        url("data:image/svg+xml,%3Csvg width='86' height='86' viewBox='0 0 86 86' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231565c0' stroke-opacity='.11' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 26h20c6 0 10 4 10 10v27c0-6-4-10-10-10H18z'/%3E%3Cpath d='M68 26H48c-6 0-10 4-10 10v27c0-6 4-10 10-10h20z'/%3E%3Cpath d='M24 34h14M24 42h14M54 34h8M54 42h8'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e8ad35' stroke-opacity='.13' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 35l30-13 30 13-30 13z'/%3E%3Cpath d='M31 43v14c8 6 26 6 34 0V43'/%3E%3Cpath d='M78 35v19'/%3E%3Cpath d='M74 58h8'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='76' height='76' viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23138a5b' stroke-opacity='.11' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 15h23l12 12v34H23z'/%3E%3Cpath d='M46 15v12h12'/%3E%3Cpath d='M31 40l6 6 12-14'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 6% 12px, 50% 26px, 91% 6px;
    background-repeat: no-repeat;
    background-size: 86px 86px, 96px 96px, 76px 76px;
    content: "";
    pointer-events: none;
}

.sd-page-intro-simple {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.sd-page-intro-centered {
    text-align: center;
}

.sd-page-intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr);
    gap: 42px;
    align-items: center;
}

.sd-page-intro-copy .sd-eyebrow {
    margin-bottom: 14px;
}

.sd-page-intro-simple .sd-eyebrow {
    justify-content: center;
    margin-bottom: 10px;
}

.sd-page-intro-copy h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--sd-navy);
    font-size: clamp(38px, 5.2vw, 58px);
    font-weight: 900;
    line-height: 1.08;
}

.sd-page-intro-simple h1 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
}

.sd-page-intro-copy p {
    max-width: 720px;
    margin: 0;
    color: #52677d;
    font-size: 18px;
    line-height: 1.75;
}

.sd-page-intro-simple p {
    max-width: 620px;
    margin: 0 auto;
    color: #5d7085;
    font-size: 16px;
    line-height: 1.65;
}

.sd-page-intro .sd-breadcrumb {
    margin-top: 16px;
    color: #64748b;
}

.sd-page-intro .sd-breadcrumb a {
    color: var(--sd-blue);
    font-weight: 800;
}

.sd-page-intro-panel {
    position: relative;
    padding: 28px;
    border: 1px solid #d8e5f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(13, 47, 79, .1);
}

.sd-page-intro-panel::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 5px;
    background: var(--sd-gold);
    content: "";
}

.sd-page-intro-panel span {
    display: block;
    margin-bottom: 12px;
    color: var(--sd-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sd-page-intro-panel strong {
    display: block;
    margin-bottom: 12px;
    color: var(--sd-navy);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.sd-page-intro-panel p {
    margin: 0 0 22px;
    color: var(--sd-muted);
    font-size: 14px;
    line-height: 1.7;
}

.sd-page-intro-panel a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--sd-navy);
    color: #fff !important;
    font-size: 14px;
    font-weight: 850;
}

.sd-page-intro-panel a:hover {
    background: var(--sd-blue);
}

/* About */
.sd-about-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 64px;
}

.sd-about-photo {
    position: relative;
    min-height: 340px;
}

.sd-about-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--sd-shadow);
}

.sd-about-photo .sd-photo-note {
    position: absolute;
    right: -20px;
    bottom: 30px;
    max-width: 250px;
    padding: 20px;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--sd-shadow);
}

.sd-photo-note strong {
    display: block;
    color: var(--sd-navy);
    font-size: 18px;
}

.sd-photo-note span {
    color: var(--sd-muted);
    font-size: 13px;
}

.sd-about-copy p {
    color: var(--sd-muted);
    font-size: 16px;
}

.sd-values-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sd-value-card {
    padding: 27px 23px;
    border: 1px solid var(--sd-border);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: var(--sd-shadow-sm);
}

.sd-value-card i {
    width: 54px;
    height: 54px;
    margin-bottom: 17px;
    border-radius: 16px;
    background: var(--sd-blue-light);
    color: var(--sd-blue);
    font-size: 22px;
    line-height: 54px;
}

.sd-value-card h3 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: 18px;
    font-weight: 800;
}

.sd-value-card p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 13px;
}

.sd-approach-list {
    display: grid;
    gap: 34px;
}

.sd-approach-card {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    align-items: stretch;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid #dce7f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(13, 47, 79, .09);
}

.sd-approach-card-reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
}

.sd-approach-card-reverse .sd-approach-visual {
    order: 2;
}

.sd-approach-card-reverse .sd-approach-copy {
    order: 1;
}

.sd-approach-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 28px;
    background:
        radial-gradient(circle at center, rgba(21, 101, 192, .08) 0 2px, transparent 2px) center/18px 18px,
        linear-gradient(135deg, #f4f9ff 0%, #ffffff 100%);
}

.sd-approach-visual::before,
.sd-approach-visual::after {
    position: absolute;
    border: 1px solid rgba(21, 101, 192, .12);
    border-radius: 50%;
    content: "";
}

.sd-approach-visual::before {
    width: 190px;
    height: 190px;
}

.sd-approach-visual::after {
    width: 280px;
    height: 280px;
    opacity: .45;
}

.sd-approach-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(250px, 92%);
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(13, 47, 79, .12));
}

.sd-approach-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 40px;
}

.sd-approach-copy::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82px;
    height: 5px;
    background: var(--sd-gold);
    content: "";
}

.sd-approach-kicker {
    display: inline-flex;
    width: max-content;
    margin-bottom: 12px;
    color: var(--sd-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.sd-approach-copy h3 {
    margin: 0 0 15px;
    color: var(--sd-navy);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.06;
}

.sd-approach-copy .sd-managed-content {
    color: #566b80;
    font-size: 15px;
    line-height: 1.75;
}

.sd-approach-copy .sd-managed-content p {
    margin-bottom: 12px;
}

.sd-approach-copy ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.sd-approach-copy li {
    position: relative;
    margin: 9px 0;
    padding-left: 26px;
    color: #405166;
    line-height: 1.55;
}

.sd-approach-copy li::before {
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 9px;
    line-height: 18px;
    text-align: center;
}

.sd-approach-note {
    margin-top: 12px;
    color: var(--sd-gold-dark);
    font-size: 13px;
    font-weight: 900;
}

.sd-commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    padding: 10px 0 26px;
}

.sd-commitment-card {
    position: relative;
    min-height: 300px;
    padding: 34px 30px 32px;
    overflow: hidden;
    border: 1px solid #dce7f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(13, 47, 79, .08);
    transform: translateY(0);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sd-commitment-card:nth-child(2) {
    margin-top: 34px;
}

.sd-commitment-card:nth-child(3) {
    margin-top: 12px;
}

.sd-commitment-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--sd-gold);
    content: "";
    transition: width .35s ease;
}

.sd-commitment-card:nth-child(2)::before {
    background: var(--sd-blue);
}

.sd-commitment-card:nth-child(3)::before {
    background: var(--sd-green);
}

.sd-commitment-card::after {
    position: absolute;
    right: -28px;
    bottom: -34px;
    color: rgba(21, 101, 192, .06);
    content: attr(data-label);
    font-size: 104px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transform: translateX(0) scale(1);
    transition: transform .45s ease, color .45s ease;
}

.sd-commitment-card:hover {
    transform: translateY(-8px);
    border-color: #bfd3e8;
    box-shadow: 0 22px 48px rgba(13, 47, 79, .16);
}

.sd-commitment-card:hover::before {
    width: 9px;
    background: linear-gradient(180deg, var(--sd-blue), var(--sd-gold));
}

.sd-commitment-card:nth-child(3):hover::before {
    background: linear-gradient(180deg, var(--sd-green), var(--sd-gold));
}

.sd-commitment-card:hover::after {
    color: rgba(21, 101, 192, .1);
    transform: translateX(-12px) scale(1.04);
}

.sd-commitment-number {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 18px;
    color: var(--sd-gold);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    transition: transform .35s ease, color .35s ease;
}

.sd-commitment-number::after {
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 14px;
    border-radius: 99px;
    background: var(--sd-gold);
    content: "";
    transform-origin: left center;
    transition: transform .35s ease, background .35s ease;
}

.sd-commitment-card:hover .sd-commitment-number {
    color: var(--sd-blue);
    transform: translateY(-4px);
}

.sd-commitment-card:hover .sd-commitment-number::after {
    background: var(--sd-blue);
    transform: scaleX(1.75);
}

.sd-commitment-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--sd-navy);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
    transition: transform .35s ease, color .35s ease;
}

.sd-commitment-card:hover h3 {
    color: var(--sd-blue);
    transform: translateY(-3px);
}

.sd-commitment-card .sd-managed-content {
    position: relative;
    z-index: 1;
    color: #52677d;
    font-size: 15px;
    line-height: 1.75;
    transition: transform .35s ease;
}

.sd-commitment-card:hover .sd-managed-content {
    transform: translateY(-3px);
}

.sd-commitment-card .sd-managed-content p {
    margin: 0 0 12px;
}

.sd-commitment-card .sd-managed-content p:last-child {
    margin-bottom: 0;
}

.sd-commitment-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-commitment-card li {
    position: relative;
    margin: 10px 0;
    padding-left: 25px;
    color: #405166;
}

.sd-commitment-card li::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 8px;
    line-height: 17px;
    text-align: center;
}

.sd-commitment-card:hover li::before {
    animation: sdCommitmentTick .8s ease both;
}

@keyframes sdCommitmentTick {
    0% {
        transform: scale(.8);
    }

    55% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sd-commitment-card,
    .sd-commitment-card::before,
    .sd-commitment-card::after,
    .sd-commitment-number,
    .sd-commitment-number::after,
    .sd-commitment-card h3,
    .sd-commitment-card .sd-managed-content {
        transition: none;
    }

    .sd-commitment-card:hover li::before {
        animation: none;
    }
}

.sd-mission-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sd-mission-card {
    min-height: 360px;
    padding: 30px;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 47, 79, .07);
}

.sd-mission-card:first-child {
    border-top: 5px solid var(--sd-blue);
}

.sd-mission-card:nth-child(2) {
    border-top: 5px solid var(--sd-green);
}

.sd-mission-card:nth-child(3) {
    border-top: 5px solid var(--sd-gold);
}

.sd-mission-card h3 {
    margin: 0 0 12px;
    color: var(--sd-navy);
    font-size: 25px;
    font-weight: 800;
}

.sd-mission-card p {
    margin: 0 0 18px;
    color: var(--sd-muted);
    line-height: 1.7;
}

.sd-mission-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-mission-list li {
    position: relative;
    margin: 11px 0;
    padding-left: 26px;
    color: #405166;
    font-size: 14px;
    line-height: 1.55;
}

.sd-mission-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 9px;
    line-height: 18px;
    text-align: center;
}

/* Contact */
.sd-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.sd-contact-card {
    min-height: 200px;
    padding: 28px;
    border: 1px solid var(--sd-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--sd-shadow);
}

.sd-contact-card i {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 15px;
    background: var(--sd-blue-light);
    color: var(--sd-blue);
    font-size: 20px;
    line-height: 52px;
    text-align: center;
}

.sd-contact-card h3 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: 20px;
    font-weight: 800;
}

.sd-contact-card p,
.sd-contact-card a {
    margin: 0;
    color: var(--sd-muted);
}

.sd-contact-main {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
}

.sd-contact-main.sd-contact-map-hidden {
    grid-template-columns: 1fr;
}

.sd-contact-main.sd-contact-map-hidden .sd-contact-form-card {
    width: min(820px, 100%);
    margin: 0 auto;
}

.sd-map-wrap,
.sd-contact-form-card {
    overflow: hidden;
    border: 1px solid var(--sd-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--sd-shadow-sm);
}

.sd-map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 610px;
    border: 0;
}

.sd-contact-form-card {
    padding: 38px;
}

.sd-contact-form-card h2 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: 30px;
    font-weight: 900;
}

.sd-contact-form-card>p {
    margin: 0 0 27px;
    color: var(--sd-muted);
}

.sd-contact-form-card .form-group {
    margin-bottom: 17px;
}

.sd-contact-form-card .form-control {
    height: 50px;
    border: 1px solid var(--sd-border);
    border-radius: 11px;
    box-shadow: none;
    color: var(--sd-ink);
}

.sd-contact-form-card textarea.form-control {
    min-height: 132px;
    padding-top: 14px;
    resize: vertical;
}

.sd-contact-form-card .form-control:focus {
    border-color: var(--sd-blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

.sd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sd-contact-form-card .btn {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--sd-blue), #0f4c91);
    font-weight: 800;
}

.sd-support-note {
    margin-top: 25px;
    padding: 18px;
    border-radius: 14px;
    background: var(--sd-blue-light);
    color: #35506b;
    font-size: 13px;
}

/* Privacy policy */
.sd-policy-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
}

.sd-policy-summary-card {
    min-height: 198px;
    padding: 28px;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--sd-shadow);
}

.sd-policy-summary-card i {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--sd-blue-light);
    color: var(--sd-blue);
    font-size: 20px;
    line-height: 52px;
    text-align: center;
}

.sd-policy-summary-card h3 {
    margin: 0 0 8px;
    color: var(--sd-navy);
    font-size: 20px;
    font-weight: 800;
}

.sd-policy-summary-card p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 14px;
    line-height: 1.7;
}

.sd-policy-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 38px;
}

.sd-policy-nav {
    position: sticky;
    top: 125px;
    padding: 24px;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--sd-shadow-sm);
}

.sd-policy-nav h2 {
    margin: 0 0 16px;
    color: var(--sd-navy);
    font-size: 20px;
    font-weight: 900;
}

.sd-policy-nav a {
    display: block;
    padding: 11px 0;
    border-top: 1px solid #eef3f8;
    color: #465a70;
    font-size: 14px;
    font-weight: 700;
}

.sd-policy-nav a:hover {
    color: var(--sd-blue);
}

.sd-policy-content {
    display: grid;
    gap: 18px;
}

.sd-policy-block {
    position: relative;
    padding: 30px 32px;
    border: 1px solid var(--sd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(13, 47, 79, .06);
}

.sd-policy-block::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 74px;
    height: 4px;
    background: var(--sd-gold);
    content: "";
}

.sd-policy-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--sd-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.sd-policy-block h2 {
    margin: 0 0 13px;
    color: var(--sd-navy);
    font-size: 25px;
    font-weight: 900;
}

.sd-policy-block p {
    margin: 0 0 14px;
    color: var(--sd-muted);
    font-size: 15px;
    line-height: 1.8;
}

.sd-policy-block p:last-child {
    margin-bottom: 0;
}

.sd-policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-policy-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 30px;
    color: #405166;
    font-size: 15px;
    line-height: 1.65;
}

.sd-policy-list li::before {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e7f8f0;
    color: var(--sd-green);
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
}

.sd-policy-highlight {
    border-color: rgba(232, 173, 53, .55);
    background: linear-gradient(135deg, #fffaf0, #ffffff);
}

.sd-policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

/* Scholarship count cards */
.sd-stats-section {
    overflow: hidden;
}

.sd-stats-section::before {
    position: absolute;
    inset: 28px auto auto 5%;
    width: 170px;
    height: 170px;
    border: 22px solid rgba(21, 101, 192, .05);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.sd-stats-section .sd-section-heading {
    margin-bottom: 32px;
}

.scholarship-count-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 0 18px;
}

.scholarship-count-card {
    position: relative;
    min-height: 168px;
    padding: 26px 22px 24px;
    overflow: hidden;
    border: 1px solid rgba(220, 230, 239, .95);
    border-radius: 8px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 14px 34px rgba(13, 47, 79, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.scholarship-count-card::before {
    position: absolute;
    top: -38px;
    right: -34px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(21, 101, 192, .08);
    content: "";
    transition: transform .32s ease, background .32s ease;
}

.scholarship-count-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 5px;
    background: linear-gradient(90deg, var(--sd-blue), var(--sd-gold));
    content: "";
    transform: scaleX(.28);
    transform-origin: left center;
    transition: transform .28s ease;
}

.scholarship-count-card:nth-child(2) {
    margin-top: 18px;
}

.scholarship-count-card:nth-child(3) {
    margin-top: 8px;
}

.scholarship-count-card:hover {
    transform: translateY(-8px);
    border-color: #bfd3e8;
    box-shadow: 0 22px 48px rgba(13, 47, 79, .14);
}

.scholarship-count-card:hover::before {
    background: rgba(232, 173, 53, .14);
    transform: scale(1.12);
}

.scholarship-count-card:hover::after {
    transform: scaleX(1);
}

.scholarship-count-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sd-blue), #0f4c91);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(21, 101, 192, .24);
    transition: transform .28s ease, background .28s ease;
}

.scholarship-count-card:hover .scholarship-count-icon {
    background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-dark));
    color: #102f4f;
    transform: rotate(-4deg) scale(1.05);
}

.scholarship-count-card strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--sd-navy);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .2px;
}

.scholarship-count-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: #596e84;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Scholarship form field polish only */

.page-scholarship_form .contactForm label small {
    color: #334b63;
    font-weight: 700;
}

.page-scholarship_form .contactForm .form-control {
    border: 1px solid #d5e1ec;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: none;
    color: var(--sd-ink);
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.page-scholarship_form .contactForm .form-control:hover {
    border-color: #bed1e3;
}

.page-scholarship_form .contactForm .form-control:focus {
    border-color: var(--sd-blue);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

.page-scholarship_form .contactForm textarea.form-control {
    resize: vertical;
}

.page-scholarship_form .contactForm select.form-control {
    background-color: #fff;
}

.page-scholarship_form .contactForm input[type="file"].form-control {
    background: #f8fbff;
}

.page-scholarship_form .contactForm input[readonly].form-control {
    background-color: #f3f7fb;
    color: #51677d;
}

.page-scholarship_form .contactForm .validation {
    margin-top: 5px;
    color: #d73535;
    font-size: 12px;
    font-weight: 700;
}

.page-scholarship_form .secborder {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.page-scholarship_form .secborder::before,
.page-scholarship_form .secborder::after {
    display: none;
}

.page-scholarship_form .secborder>.form-group,
.page-scholarship_form .secborder>.row {
    float: none;
}

.page-scholarship_form #four_wheeler_names {
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
}

.page-scholarship_form #four_wheeler_names .vehicle-name-field {
    margin-bottom: 16px;
}

.page-scholarship_form .select2-container {
    width: 100% !important;
}

.page-scholarship_form .select2-container--default .select2-selection--single,
.page-scholarship_form .select2-container--default .select2-selection--multiple {
    border: 1px solid #d5e1ec;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.page-scholarship_form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--sd-ink);
}

.page-scholarship_form .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 7px;
}

.page-scholarship_form .select2-container--default.select2-container--focus .select2-selection--single,
.page-scholarship_form .select2-container--default.select2-container--focus .select2-selection--multiple,
.page-scholarship_form .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--sd-blue);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, .1);
}

/* Footer refresh */
.sd-scholarship-site footer.sd-footer {
    position: relative;
    background: #071b2e;
}

.sd-scholarship-site footer.sd-footer::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sd-gold);
    content: "";
}

.sd-scholarship-site .sd-footer-main {
    padding: 42px 0 30px;
    background: linear-gradient(180deg, #0b2b49 0%, #071b2e 100%);
}

.sd-scholarship-site .sd-footer-row {
    display: grid;
    grid-template-columns: 1.35fr .8fr .95fr 1.2fr;
    gap: 32px;
    margin: 0;
}

.sd-scholarship-site .sd-footer-column {
    width: auto;
    padding: 0;
}

.sd-scholarship-site .footer-column-content {
    height: 100%;
    padding: 2px 0;
}

.sd-scholarship-site .sd-footer-brand {
    align-items: center;
    margin-bottom: 16px;
}

.sd-scholarship-site .sd-footer-brand img {
    width: 126px;
    padding: 7px;
    border-radius: 8px;
    background: #fff;
}

.sd-scholarship-site .sd-footer-brand-name {
    color: #fff;
    font-size: 20px;
    letter-spacing: .4px;
}

.sd-scholarship-site .sd-footer-title {
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 14px;
    letter-spacing: .8px;
}

.sd-scholarship-site .sd-footer-title:after {
    width: 30px;
    height: 2px;
    background: var(--sd-gold);
}

.sd-scholarship-site .sd-footer-about,
.sd-scholarship-site .sd-footer-links a,
.sd-scholarship-site .sd-footer-contact,
.sd-scholarship-site .sd-footer-contact a {
    color: #c3d0de;
}

.sd-scholarship-site .sd-footer-about {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.75;
}

.sd-scholarship-site .sd-footer-links li,
.sd-scholarship-site .sd-footer-contact li {
    margin-bottom: 10px;
}

.sd-scholarship-site .sd-footer-links a {
    font-size: 14px;
    font-weight: 600;
}

.sd-scholarship-site .sd-footer-links a:before {
    color: var(--sd-gold);
}

.sd-scholarship-site .sd-footer-links a:hover,
.sd-scholarship-site .sd-footer-contact a:hover {
    color: #ffffff;
}

.sd-scholarship-site .sd-footer-contact i {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    padding-top: 0;
    border-radius: 8px;
    background: rgba(232, 173, 53, .12);
    color: var(--sd-gold);
    line-height: 28px;
    text-align: center;
}

.sd-scholarship-site .sd-footer-social a {
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.sd-scholarship-site .sd-footer-social a:hover {
    border-color: var(--sd-gold);
    background: var(--sd-gold);
    color: #071b2e;
}

.sd-scholarship-site .sd-map-link {
    min-height: 40px;
    padding: 0 14px;
    border-color: rgba(232, 173, 53, .55);
    border-radius: 8px;
    color: #ffd36f;
    letter-spacing: .2px;
}

.sd-scholarship-site .sd-map-link:hover {
    background: var(--sd-gold);
    color: #071b2e;
}

.sd-scholarship-site .sd-footer-bottom {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #061729;
}

.sd-scholarship-site .sd-footer-bottom-row {
    gap: 18px;
}

.sd-scholarship-site .sd-footer-bottom p {
    color: #9fb3c7;
}

.sd-scholarship-site .sd-footer-bottom a {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .sd-scholarship-site .sd-brand-logo img {
        width: 231px;
    }

    .sd-scholarship-site .sd-header-top-row {
        justify-content: center;
    }

    .sd-scholarship-site .sd-header-location {
        display: none;
    }

    .sd-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-quick-item:nth-child(2) {
        border-right: 0;
    }

    .sd-quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--sd-border);
    }

    .sd-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-approach-card,
    .sd-approach-card-reverse {
        grid-template-columns: 1fr;
    }

    .sd-approach-card-reverse .sd-approach-visual,
    .sd-approach-card-reverse .sd-approach-copy {
        order: initial;
    }

    .sd-approach-visual {
        min-height: 220px;
    }

    .sd-commitment-grid {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }

    .sd-commitment-card:nth-child(2),
    .sd-commitment-card:nth-child(3) {
        margin-top: 0;
    }

    .sd-faq-layout {
        grid-template-columns: 1fr;
    }

    .sd-home-gallery-grid {
        grid-template-rows: repeat(2, 165px);
    }

    .sd-scholarship-site .sd-footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
    }
}

@media (max-width: 991px) {
    .sd-section {
        padding: 68px 0;
    }

    .sd-scholarship-site .sd-brand {
        flex-basis: auto;
    }

    .sd-scholarship-site .sd-brand-copy {
        display: none;
    }

    .sd-intro-grid,
    .sd-about-grid,
    .sd-page-intro-grid,
    .sd-contact-main,
    .sd-docs-panel {
        grid-template-columns: 1fr;
    }

    .sd-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-assistance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-home-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sd-home-gallery-card,
    .sd-home-gallery-wide {
        grid-row: auto;
        min-height: 230px;
    }

    .sd-mvg-grid {
        grid-template-columns: 1fr;
    }

    .sd-mvg-card {
        min-height: auto;
    }

    .sd-mvg-card,
    .sd-mvg-card-inner,
    .sd-mvg-card-face {
        min-height: 0;
    }

    .sd-mvg-card-inner,
    .sd-mvg-card:hover .sd-mvg-card-inner,
    .sd-mvg-card:focus-within .sd-mvg-card-inner,
    .sd-mvg-card:focus .sd-mvg-card-inner {
        transform: none;
    }

    .sd-mvg-card-face {
        position: relative;
    }

    .sd-mvg-card-back {
        display: none;
    }

    .sd-mission-grid {
        grid-template-columns: 1fr;
    }

    .sd-mission-card {
        min-height: auto;
    }

    .sd-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-process-card:nth-child(2)::after {
        display: none;
    }

    .sd-image-stack {
        max-width: none;
    }

    .sd-contact-cards {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .sd-policy-summary {
        grid-template-columns: 1fr;
        margin-top: -35px;
    }

    .sd-policy-summary-card {
        min-height: auto;
    }

    .sd-policy-layout {
        grid-template-columns: 1fr;
    }

    .sd-policy-nav {
        position: static;
    }

    .scholarship-count-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .scholarship-count-card:nth-child(2),
    .scholarship-count-card:nth-child(3) {
        margin-top: 0;
    }

    .sd-contact-card {
        min-height: auto;
    }

    .sd-scholarship-site .sd-footer-main {
        padding: 40px 0 32px;
    }

    .sd-about-photo .sd-photo-note {
        right: 18px;
    }
}

@media (max-width: 767px) {
    .sd-container {
        width: min(100% - 24px, 1180px);
    }

    .sd-section {
        padding: 54px 0;
    }

    .sd-section-heading {
        margin-bottom: 30px;
    }

    .sd-section-title {
        font-size: 31px;
    }

    .sd-header-top {
        display: none;
    }

    .sd-scholarship-site .sd-header-main-row {
        min-height: 72px;
    }

    .sd-scholarship-site .sd-brand-logo img {
        width: 231px;
    }

    .sd-scholarship-site .sd-footer-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sd-scholarship-site .sd-footer-bottom-row {
        align-items: flex-start;
    }

    .sd-slider-card #myCarousel .slider-frame {
        padding-bottom: 125%;
    }

    .sd-slider-card #myCarousel .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .sd-slider-card #myCarousel .carousel-indicators li {
        width: 8px;
        height: 8px;
    }

    .sd-slider-card #myCarousel .carousel-indicators li.active {
        width: 20px;
        height: 8px;
    }

    .sd-slider-card #myCarousel .carousel-control {
        width: 12%;
    }

    .sd-quick-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .sd-quick-item {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid var(--sd-border);
    }

    .sd-quick-item:last-child {
        border-bottom: 0;
    }

    .sd-home-gallery-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .sd-home-gallery-card {
        min-height: 190px;
    }

    .sd-image-stack .sd-main-image {
        min-height: 0;
        height: auto;
    }

    .sd-info-card {
        padding: 24px;
        border-left: 0;
        border-top: 5px solid var(--sd-blue);
    }

    .sd-card-grid,
    .sd-assistance-grid,
    .sd-mvg-grid,
    .sd-process-grid,
    .sd-values-grid,
    .sd-approach-list,
    .sd-mission-grid,
    .sd-doc-list {
        grid-template-columns: 1fr;
    }

    .sd-approach-card {
        min-height: 0;
    }

    .sd-approach-copy {
        padding: 28px 22px;
    }

    .sd-approach-copy h3 {
        font-size: 29px;
    }

    .sd-commitment-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .sd-commitment-number {
        font-size: 38px;
    }

    .sd-faq-image img {
        max-height: 300px;
    }

    .sd-process-card::after {
        display: none;
    }

    .sd-docs-panel {
        padding: 28px 22px;
        gap: 25px;
    }

    .sd-docs-panel h2 {
        font-size: 29px;
    }

    .sd-home-decor-section::before {
        width: 92px;
        height: 92px;
        opacity: .75;
    }

    .sd-home-decor-section::after {
        width: 190px;
        height: 112px;
        right: -105px;
        border-width: 18px;
    }

    .sd-home-bg-badges span {
        width: 88px;
        height: 88px;
        font-size: 10px;
    }

    .sd-home-bg-badges span:nth-child(1) {
        top: 28px;
        right: 2px;
    }

    .sd-home-cta {
        padding: 32px 20px;
    }

    .sd-home-cta h2 {
        font-size: 29px;
    }

    .sd-inner-hero {
        padding: 58px 0 78px;
    }

    .sd-inner-hero h1 {
        font-size: 40px;
    }

    .sd-page-intro {
        padding: 36px 0 32px;
    }

    .sd-page-intro-grid {
        gap: 28px;
    }

    .sd-page-intro-copy h1 {
        font-size: 38px;
    }

    .sd-page-intro-simple h1 {
        font-size: 31px;
    }

    .sd-page-intro-copy p {
        font-size: 16px;
    }

    .sd-page-intro-simple p {
        font-size: 15px;
    }

    .sd-page-intro-panel {
        padding: 23px 20px;
    }

    .sd-about-photo img {
        position: relative;
        inset: auto;
        height: auto;
        min-height: 0;
    }

    .sd-about-photo .sd-photo-note {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: -55px 16px 0;
    }

    .sd-contact-form-card {
        padding: 25px 20px;
    }

    .sd-policy-block {
        padding: 24px 20px;
    }

    .sd-policy-block h2 {
        font-size: 22px;
    }

    .sd-policy-contact .sd-secondary-btn,
    .sd-policy-contact .sd-outline-btn {
        width: 100%;
    }

    .scholarship-count-strip {
        grid-template-columns: 1fr;
    }

    .scholarship-count-card {
        min-height: 150px;
    }

    .sd-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sd-map-wrap iframe {
        min-height: 380px;
    }

    .activity-popup-modal {
        padding: 16px 0 !important;
    }

    .activity-popup-modal .modal-content {
        max-height: calc(100vh - 32px);
    }

    .activity-popup-modal .modal-body {
        max-height: calc(100vh - 80px);
    }

    .activity-popup-card {
        grid-template-columns: 78px 1fr;
        gap: 12px;
    }

    .activity-popup-image {
        width: 78px;
        height: 68px;
    }

    .activity-popup-read-more {
        grid-column: 1 / -1;
        text-align: center;
    }
}
