@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestThin1602-hint.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestLight1602-hint.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestRegular1602-hint.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestMedium1602-hint.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestBold1602-hint.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestExtraBold1602-hint.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../Fonts/OnestBlack1602-hint.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-100: #e0f2fe;
    --blue-200: #bae6fd;
    --blue-400: #38bdf8;
    --blue-600: #0284c7;
    --white: #ffffff;
    --slate-900: #0f172a;
    --slate-600: #475569;
}

body {
    font-family: 'Onest', sans-serif;
    background: linear-gradient(135deg, var(--blue-100) 0%, var(--white) 60%, var(--blue-200) 100%);
    color: var(--slate-900);
}

.blog-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.blog-hero {
    padding: 2rem 0 1rem;
}

.blog-hero-inner {
    text-align: left;
}

.blog-hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-top: 0.6rem;
}

.blog-hero p {
    margin-top: 0.8rem;
    color: var(--slate-600);
    max-width: 640px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.blog-card {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 1.5rem;
    background: transparent;
    padding: 1.5rem 0;
    align-items: stretch;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.blog-card:first-child {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: var(--blue-600);
}

.blog-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    color: rgba(71, 85, 105, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-skeleton {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.blog-skeleton-line {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(148, 163, 184, 0.2) 0%,
        rgba(148, 163, 184, 0.4) 50%,
        rgba(148, 163, 184, 0.2) 100%
    );
    background-size: 200% 100%;
    animation: blog-shimmer 1.4s ease-in-out infinite;
}

.blog-skeleton-line.is-wide {
    width: 75%;
}

.blog-skeleton-line.is-short {
    width: 55%;
}

@keyframes blog-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: var(--slate-600);
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
}

.blog-status {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(71, 85, 105, 0.6);
    margin-bottom: 0.4rem;
}

.blog-card.is-muted {
    opacity: 0.75;
}

.blog-detail {
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: none;
}

.blog-detail:target {
    display: block;
}

.blog-detail:target ~ .blog-hero {
    display: none;
}

.blog-detail-inner {
    position: relative;
}

.blog-detail:target ~ .blog-list {
    display: none;
}

.blog-detail-header p {
    color: var(--slate-600);
    margin-top: 0.6rem;
}

.blog-detail-hero {
    width: 100%;
    height: clamp(220px, 36vw, 320px);
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-section-title {
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    color: var(--slate-900);
}

.blog-points,
.blog-steps {
    margin: 0.85rem 0 1.2rem;
    padding-left: 1.2rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.blog-points li,
.blog-steps li {
    margin-bottom: 0.6rem;
}

.blog-full-text {
    margin-top: 1.5rem;
    line-height: 1.7;
    color: var(--slate-900);
}

.blog-full-text p {
    margin-bottom: 1rem;
    color: var(--slate-600);
}

.blog-full-text strong {
    color: var(--slate-900);
}

.blog-back {
    display: inline-flex;
    margin-top: 1.5rem;
    text-decoration: none;
    color: var(--blue-600);
    font-weight: 600;
}

.blog-close {
    display: none;
}

@media (max-width: 760px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 200px;
    }
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0.85rem 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.navbar {
    max-width: 980px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: none;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.nav-brand img {
    height: 34px;
    width: auto;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.nav-brand-text strong {
    font-size: 1rem;
    font-weight: 700;
}

.nav-brand-text span {
    font-size: 0.72rem;
    color: var(--slate-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--slate-900);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--blue-600);
}

.nav-cta {
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.82rem;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--slate-900);
    border-radius: 999px;
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--slate-900);
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle.is-open span {
    opacity: 0;
}

.nav-toggle.is-open span::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .navbar {
        max-width: 92%;
    }

    .nav-menu {
        gap: 0.85rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: nowrap;
        border-radius: 0;
        max-width: 100%;
        margin: 0;
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 0.6rem;
        display: none;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0;
        padding: 0.9rem 1rem;
        box-shadow: var(--shadow-sm);
    }

    .nav-menu.is-open {
        display: flex;
    }
}

.site-footer {
    background: #ffffff;
    color: var(--slate-900);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
    justify-items: start;
    text-align: left;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 44px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--slate-600);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: var(--slate-600);
    text-decoration: none;
}

.footer-contact p {
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    color: var(--slate-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 600;
}

/* Chatbot */
.chatbot-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(2, 132, 199, 0.35);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 1000;
}

.chatbot-button svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
}

.chatbot-panel {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: min(360px, calc(100vw - 48px));
    max-height: 460px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.chatbot-panel.is-open {
    display: flex;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff;
}

.chatbot-header h4 {
    font-size: 1rem;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
}

.chatbot-messages {
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.chatbot-message {
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 85%;
}

.chatbot-message.bot {
    background: rgba(56, 189, 248, 0.12);
    color: var(--slate-900);
    align-self: flex-start;
}

.chatbot-message.user {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff;
    align-self: flex-end;
}

.chatbot-faqs {
    padding: 0.5rem 1rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.chatbot-faqs button {
    border: 1px solid rgba(2, 132, 199, 0.25);
    background: rgba(2, 132, 199, 0.08);
    color: var(--blue-600);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    cursor: pointer;
}

.chatbot-form {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.chatbot-input {
    flex: 1;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-family: inherit;
}

.chatbot-send {
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 760px) {
    .footer-inner {
        padding: 0 1.5rem;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Team page styling */
.team-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 5rem;
}

.team-hero {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 62%),
        linear-gradient(135deg, rgba(224, 242, 254, 0.6), rgba(255, 255, 255, 0.92));
    border-radius: 28px;
}

.team-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.team-hero h1 {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    letter-spacing: -0.02em;
}

.team-hero p {
    margin-top: 0.85rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.team-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.team-hero-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.team-hero-highlights div {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: grid;
    gap: 0.35rem;
}

.team-hero-highlights span {
    font-weight: 700;
    color: var(--slate-900);
}

.team-hero-highlights small {
    color: var(--slate-600);
    font-size: 0.85rem;
}

.team-section {
    margin-top: 3.5rem;
}

.team-section--accent {
    margin-top: 2.5rem;
    padding: 2.5rem;
    border-radius: 28px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.team-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.team-section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    letter-spacing: -0.01em;
}

.team-section-heading p {
    margin-top: 0.6rem;
    color: var(--slate-600);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.team-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(2, 132, 199, 0.85));
    opacity: 0.85;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(2, 132, 199, 0.35);
}

.team-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(224, 242, 254, 0.65));
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(56, 189, 248, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.team-grid--compact .team-photo {
    width: 110px;
    height: 110px;
}

.team-card.featured .team-photo {
    width: 200px;
    height: 200px;
    border-radius: 24px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.team-role {
    color: var(--blue-600);
    font-weight: 600;
}

.team-meta {
    color: var(--slate-600);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.team-bio {
    color: var(--slate-600);
    margin-top: 0.6rem;
    line-height: 1.6;
}

/* Contact page styling */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
}

.contact-hero {
    text-align: center;
    padding: 1.4rem 0 1rem;
}

.contact-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    letter-spacing: -0.02em;
}

.contact-hero p {
    margin-top: 0.85rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.contact-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-section {
    margin-top: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.contact-cards {
    display: grid;
    gap: 1.25rem;
}

.contact-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    display: grid;
    gap: 1rem;
}

.contact-card h2 {
    font-size: 1.35rem;
    color: var(--slate-900);
}

.contact-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--slate-900);
}

.contact-item p {
    margin: 0;
    color: var(--slate-600);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: #ffffff;
    flex-shrink: 0;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(56, 189, 248, 0.15);
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-social a:hover {
    background: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    color: var(--slate-900);
}

.contact-form-header p {
    color: var(--slate-600);
    margin-top: 0.35rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-field {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--slate-600);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-footer-cta {
    margin-top: 3rem;
}

.contact-footer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-footer-card h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.contact-footer-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.contact-notice {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #ffffff;
    color: var(--slate-900);
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 4000;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-notice.success {
    border-left: 4px solid #10b981;
}

.contact-notice.error {
    border-left: 4px solid #ef4444;
}

.contact-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.team-cta {
    margin-top: 3.5rem;
}

.team-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.team-cta-card h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--slate-900);
    margin-bottom: 0.6rem;
}

.team-cta-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.team-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (max-width: 860px) {
    .team-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card.featured .team-photo {
        margin: 0 auto;
    }

    .team-section--accent {
        padding: 2rem 1.5rem;
    }

    .team-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-footer-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .team-page {
        padding: 2rem 1.25rem 4rem;
    }

    .team-card {
        align-items: center;
        text-align: center;
    }

    .team-card-body {
        text-align: center;
    }

    .team-cta-card {
        align-items: center;
        text-align: center;
    }

    .team-cta-actions {
        justify-content: center;
    }

    .contact-page {
        padding: 2rem 1.25rem 4rem;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-footer-card {
        align-items: center;
        text-align: center;
    }
}

/* About page styling */
.section-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    color: var(--blue-600);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.25);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(2, 132, 199, 0.3);
}

.ghost-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 132, 199, 0.35);
    color: var(--blue-600);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ghost-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(2, 132, 199, 0.6);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.15);
}

.about-hero {
    padding: 2rem 0 4.5rem;
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.85), rgba(255, 255, 255, 0.9));
}

.about-hero-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-hero-card {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    border: none;
}

.about-hero-media {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.15);
    color: var(--blue-600);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    margin: 1rem 0 1rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.about-hero-text p {
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.about-stat {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(2, 132, 199, 0.08));
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: grid;
    gap: 0.35rem;
}

.about-stat span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--slate-900);
}

.about-stat small {
    color: var(--slate-600);
    font-size: 0.85rem;
}

.about-story {
    background: var(--white);
    padding: 4.5rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.about-story h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    margin: 0.75rem 0 1rem;
    color: var(--slate-900);
}

.about-story p {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 5.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-story-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--slate-900);
}

.about-story-card ul {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    color: var(--slate-600);
}

.about-story-card li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.about-story-card i {
    color: var(--blue-600);
}

.about-achievements {
    background: #ffffff;
    padding: 4rem 0;
}


.about-vision-objectives {
    background: #ffffff;
    padding: 4rem 0;
}

.about-vision-blocks {
    display: grid;
    gap: 1.75rem;
}

.about-vision-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.about-vision-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.about-vision-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.about-vision-label i {
    color: var(--blue-600);
}

.about-vision-item p {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.about-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
    display: grid;
    gap: 0.75rem;
}

.about-card.emphasis {
    background: rgba(255, 255, 255, 0.95);
}

.about-card h3 {
    font-size: 1.25rem;
    color: var(--slate-900);
}

.about-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.about-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(2, 132, 199, 0.18));
    color: var(--blue-600);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.18);
}

.about-tagline {
    font-weight: 600;
    color: var(--blue-600);
}

.objectives-card {
    padding: 2rem;
}

.objectives-card .objective-list {
    margin-top: 1.25rem;
}

.objectives-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    color: var(--slate-600);
    padding: 0;
    margin: 1.25rem 0 0;
}

.objectives-list li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.objectives-list i {
    color: var(--blue-600);
}

.objective-list {
    display: grid;
    gap: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
}

.objective-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.objective-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    flex-shrink: 0;
}

.objective-item h4 {
    margin-bottom: 0.5rem;
    color: var(--slate-900);
    font-size: 1.1rem;
}

.objective-item p {
    color: var(--slate-600);
    line-height: 1.6;
}

.about-impact {
    background: #ffffff;
    padding: 4rem 0;
}

.about-impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.about-impact .impact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 1.8rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about-impact .impact-card h3 {
    margin-bottom: 1rem;
    color: var(--slate-900);
    font-size: 1.15rem;
}

.about-impact-photo {
    background: #ffffff;
    padding: 0 0 4rem;
}

.about-photo-collage {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    height: clamp(280px, 50vw, 460px);
}


.collage-item {
    position: absolute;
    border-radius: 22px;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.2);
    cursor: pointer;
    transition: transform 0.35s ease, left 0.35s ease, top 0.35s ease, right 0.35s ease,
        bottom 0.35s ease, width 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.collage-item:focus-visible {
    outline: 2px solid rgba(2, 132, 199, 0.6);
    outline-offset: 4px;
}

.collage-item.is-main {
    transform: scale(1.02);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.collage-item.is-side {
    transform: scale(0.97);
}

.collage-main {
    width: 68%;
    height: 70%;
    left: 12%;
    top: 12%;
    z-index: 3;
}

.collage-top {
    width: 36%;
    height: 38%;
    right: 4%;
    top: 2%;
    z-index: 4;
}

.collage-right {
    width: 34%;
    height: 40%;
    right: 0;
    bottom: 8%;
    z-index: 2;
}

.collage-left {
    width: 30%;
    height: 36%;
    left: 2%;
    bottom: 4%;
    z-index: 1;
}

.collage-item:hover {
    transform: translateY(-6px) scale(1.01);
}

@media (max-width: 720px) {
    .about-photo-collage {
        height: 360px;
    }

    .collage-main {
        width: 86%;
        height: 54%;
        left: 7%;
        top: 8%;
    }

    .collage-top {
        width: 48%;
        height: 30%;
        right: 6%;
        top: 56%;
    }

    .collage-right {
        width: 44%;
        height: 28%;
        right: 6%;
        bottom: 4%;
    }

    .collage-left {
        width: 40%;
        height: 28%;
        left: 6%;
        bottom: 4%;
    }
}

.impact-metric {
    display: grid;
    gap: 0.3rem;
    color: var(--slate-600);
    margin-bottom: 0.85rem;
}

.impact-metric span {
    font-weight: 700;
    color: var(--slate-900);
}

.about-cta {
    margin-top: 3rem;
    padding: 3.5rem 0 5rem;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.9), rgba(56, 189, 248, 0.9));
    color: var(--white);
}

.about-cta-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-cta h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.about-cta p {
    opacity: 0.9;
}

.about-cta .hero-cta {
    background: #ffffff;
    color: var(--blue-600);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.about-cta .hero-cta:hover {
    transform: translateY(-2px);
}

.about-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-cta .ghost-cta {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.about-cta .ghost-cta:hover {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

/* Donation popup */
.donation-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3000;
}

.donation-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.donation-popup-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
    position: relative;
    display: grid;
    gap: 0.9rem;
    text-align: left;
}

.donation-popup-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.12);
    color: var(--blue-600);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-popup-card h3 {
    font-size: 1.4rem;
    color: var(--slate-900);
}

.donation-popup-card p {
    color: var(--slate-600);
    line-height: 1.6;
}

.donation-popup-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.donation-popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: var(--slate-900);
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 860px) {
    .about-hero-card {
        padding: 2.25rem;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .about-page section {
        padding: 3.5rem 0;
    }

    .about-hero {
        padding: 5rem 0 3rem;
    }

    .about-hero-card {
        padding: 2rem;
    }

    .about-hero-media {
        min-height: 220px;
    }

    .objective-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
