 :root {
        --rp-primary-red: #e62229;
        --rp-primary-blue: #1c529c;
        --rp-dark-blue: #0c2340;
        --rp-card-bg: #ffffff;
        --rp-body-bg: #f8fafc;
        --rp-text-main: #1e293b;
        --rp-text-muted: #64748b;
        --rp-border: #e2e8f0;
        --rp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
        --rp-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        /* font-family: 'Plus Jakarta Sans', sans-serif; */
        background-color: var(--rp-body-bg);
        color: var(--rp-text-main);
        line-height: 1.6;
    }

    .about-page-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.25rem 5rem;
    }

    /* Red Accent Lines */
    .red-line {
        width: 32px;
        height: 3px;
        background-color: var(--rp-primary-red);
        margin-bottom: 1.25rem;
    }

    /* Section 1: Hero Story + Right Contact Card */
    .hero-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: start;
        margin-bottom: 3.5rem;
    }

    @media (min-width: 992px) {
        .hero-split-grid {
            grid-template-columns: 1.35fr 0.85fr;
        }
    }

    .hero-left {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 640px) {
        .hero-left {
            grid-template-columns: auto 1fr;
        }
    }

    .big-logo-wrap img {
        width: 140px;
        height: auto;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .hero-content .tagline {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--rp-text-muted);
        margin: 0.25rem 0 1.25rem;
        display: block;
    }

    .hero-content p {
        font-size: 16px;
        color: var(--rp-text-muted);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    /* Right Card (Greetings) */
    .greetings-card {
        background: #ffffff;
        border-radius: 1rem;
        padding: 2rem;
        border: 1px solid var(--rp-border);
        box-shadow: var(--rp-shadow-md);
    }

    .greetings-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
    }

    .greetings-card p {
        font-size: 16px;
        color: var(--rp-text-muted);
        line-height: 1.6;
        margin-bottom: 0.85rem;
    }

    .greetings-card strong {
        color: #0f172a;
    }

    .contact-details-box {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px dashed var(--rp-border);
    }

    .contact-detail-row {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 0.65rem;
    }

    .contact-detail-row i {
        color: #0f172a;
        margin-top: 3px;
        font-size: 0.875rem;
    }

    /* Section 2: 4 Feature Mini Cards */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3.5rem;
    }

    @media (min-width: 640px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .feat-card {
        background: #ffffff;
        border: 1px solid var(--rp-border);
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: var(--rp-shadow-sm);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--rp-shadow-md);
    }

    .feat-header {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 1rem;
    }

    .feat-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 0.625rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* Card Unique Accent Styles */
    .feat-card.c-services .feat-icon-wrap {
        background: #e6f9f4;
        color: #00c194;
    }

    .feat-card.c-vision .feat-icon-wrap {
        background: #eff6ff;
        color: #3b82f6;
    }

    .feat-card.c-team .feat-icon-wrap {
        background: #fef2f2;
        color: #ef4444;
    }

    .feat-card.c-values .feat-icon-wrap {
        background: #fffbeb;
        color: #f59e0b;
    }

    .feat-header h4 {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
    }

    .feat-card.c-services h4 {
        color: #00c194;
    }

    .feat-card.c-vision h4 {
        color: #3b82f6;
    }

    .feat-card.c-team h4 {
        color: #ef4444;
    }

    .feat-card.c-values h4 {
        color: #d97706;
    }

    .feat-card p {
        font-size: 16px;
        color: var(--rp-text-muted);
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .feat-link {
        font-size: 0.75rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .feat-card.c-services .feat-link {
        color: #00c194;
    }

    .feat-card.c-vision .feat-link {
        color: #3b82f6;
    }

    .feat-card.c-team .feat-link {
        color: #ef4444;
    }

    .feat-card.c-values .feat-link {
        color: #d97706;
    }

    /* Section 3: Building Relationships Banner & Counters */
    .banner-counter-wrap {
        background: #ffffff;
        border: 1px solid var(--rp-border);
        border-radius: 1.25rem;
        padding: 2.5rem 2rem;
        box-shadow: var(--rp-shadow-sm);
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: center;
        margin-bottom: 4rem;
    }

    @media (min-width: 992px) {
        .banner-counter-wrap {
            grid-template-columns: 1fr 1.65fr;
        }
    }

    .banner-info h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.25;
    }

    .banner-info p {
        font-size: 16px;
        color: var(--rp-text-muted);
        margin: 0.75rem 0 1.25rem;
        line-height: 1.6;
    }

    .btn-get-touch {
        display: inline-block;
        background: var(--rp-primary-red);
        color: #ffffff;
        font-size: 0.8125rem;
        font-weight: 700;
        padding: 0.65rem 1.5rem;
        border-radius: 0.5rem;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .btn-get-touch:hover {
        opacity: 0.9;
        color: #ffffff;
    }

    .counter-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    @media (min-width: 640px) {
        .counter-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .counter-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .counter-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #eef4fc;
        color: #2b70c9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .counter-num {
        font-size: 1.75rem;
        font-weight: 800;
        color: #1e5ba8;
        line-height: 1.1;
        margin-bottom: 0.25rem;
    }

    .counter-lbl {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--rp-text-main);
        line-height: 1.3;
    }

    /* Section 4: Exclusive Team Section */
    .exclusive-team-wrap {
        margin-bottom: 2rem;
    }

    .team-main-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
    }

    .team-grid-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 640px) {
        .team-grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .team-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .member-box {
        background: #ffffff;
        border: 1px solid var(--rp-border);
        border-radius: 0.85rem;
        overflow: hidden;
        box-shadow: var(--rp-shadow-sm);
        display: flex;
        flex-direction: column;
    }

    .member-photo {
        aspect-ratio: 1 / 1;
        background: #f1f5f9;
        overflow: hidden;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    .member-details {
        padding: 1.25rem 1rem;
        text-align: center;
        background: #ffffff;
    }

    .member-details h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #1e5ba8;
        margin-bottom: 0.2rem;
    }

    .member-details p {
        font-size: 16px;
        color: var(--rp-text-muted);
        font-weight: 500;
    }

    /* Blue CTA Card in Team Grid */
    .team-blue-card {
        background: #1c529c;
        border-radius: 0.85rem;
        color: #ffffff;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: var(--rp-shadow-sm);
    }

    .team-blue-card i {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .team-blue-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .team-blue-card p {
        font-size: 16px;
        line-height: 1.5;
        color: #dbeafe;
        margin-bottom: 1.5rem;
    }

    .btn-team-white {
        background: #ffffff;
        color: #1c529c;
        font-size: 0.8125rem;
        font-weight: 700;
        padding: 0.6rem 1.25rem;
        border-radius: 0.35rem;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .btn-team-white:hover {
        background: #f8fafc;
        color: #1c529c;
    }

    /* Image Container Under Tagline */
    .hero-feature-img {
        width: 100%;
        height: 220px;
        border-radius: 0.875rem;
        overflow: hidden;
        margin-bottom: 1.25rem;
        border: 1px solid var(--rp-border);
        box-shadow: var(--rp-shadow-sm);
    }

    .hero-feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.4s ease;
    }

    .hero-feature-img:hover img {
        transform: scale(1.03);
    }

    /* Ensure left & right sides stretch to equal height */
    .hero-split-grid {
        align-items: stretch;
    }

    .greetings-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }