/* --- BRAND VARIABLES --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- FAQ CORE LAYOUT --- */
.ocsy-faq-page-section {
    padding: 80px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-faq-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* --- SIDEBAR FILTER INDEX --- */
.ocsy-faq-nav-sidebar {
    display: none; /* Hidden on mobile viewports for clean stacking flow */
}

.ocsy-faq-nav-sticky {
    position: sticky;
    top: 130px; /* Aligns comfortably below your global header */
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
}

.ocsy-faq-nav-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ocsy-orange);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ocsy-faq-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ocsy-faq-nav-item-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ocsy-text-muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.ocsy-faq-nav-item-link:hover {
    color: var(--ocsy-blue);
    background-color: rgba(0, 45, 98, 0.04);
}

.ocsy-faq-nav-item-link.active {
    color: var(--ocsy-white);
    background-color: var(--ocsy-blue);
}

/* --- FAQ CONTENT STACK --- */
.ocsy-faq-content-stack {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.ocsy-faq-category-group {
    scroll-margin-top: 140px; /* Syncs smooth anchor scrolling targets beneath header */
}

.ocsy-faq-cat-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--ocsy-blue);
    border-bottom: 2px solid var(--ocsy-bg-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Accordion Element Styling */
.ocsy-faq-accordion-item {
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.ocsy-faq-accordion-item:hover {
    border-color: rgba(0, 45, 98, 0.2);
    box-shadow: 0 4px 12px rgba(0, 45, 98, 0.02);
}

.ocsy-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--ocsy-blue);
    text-align: left;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

/* Custom CSS Arrow Indicator Icon */
.ocsy-faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.ocsy-faq-icon::before, .ocsy-faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--ocsy-orange);
    transition: transform 0.25s ease;
}
/* Horizontal line */
.ocsy-faq-icon::before {
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
}
/* Vertical line */
.ocsy-faq-icon::after {
    top: 2px;
    left: 8px;
    width: 2px;
    height: 14px;
}

/* Active Open State styles */
.ocsy-faq-accordion-item.active {
    background-color: var(--ocsy-white);
    border-color: rgba(255, 102, 0, 0.25);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.03);
}
.ocsy-faq-accordion-item.active .ocsy-faq-icon {
    transform: rotate(135deg); /* Flips icon clean into an "x" close metric */
}
.ocsy-faq-accordion-item.active .ocsy-faq-icon::after {
    transform: scale(0); /* Drops vertical segment out seamlessly */
}

/* Panel Animations using modern display/grid track interpolation logic */
.ocsy-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.ocsy-faq-accordion-item.active .ocsy-faq-panel {
    grid-template-rows: 1fr;
}
.ocsy-faq-panel-inner {
    overflow: hidden;
}

.ocsy-faq-panel p {
    font-size: 15px;
    color: var(--ocsy-text-muted);
    line-height: 1.6;
    padding: 0 24px 20px 24px;
}

/* Custom lists configuration inside panels */
.ocsy-faq-inner-list {
    list-style: none;
    padding: 0 24px 20px 44px;
}
.ocsy-faq-inner-list li {
    font-size: 14px;
    color: var(--ocsy-text-dark);
    font-weight: 600;
    position: relative;
    margin-bottom: 8px;
}
.ocsy-faq-inner-list li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: var(--ocsy-orange);
    border-radius: 50%;
}

/* --- CONTACT MODULE STYLES --- */
.ocsy-faq-contact-card {
    background: linear-gradient(to right, var(--ocsy-bg-light) 0%, #F1F5F9 100%);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 36px;
}
.ocsy-faq-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 8px;
}
.ocsy-contact-desc {
    font-size: 15px;
    color: var(--ocsy-text-muted);
    margin-bottom: 24px;
}
.ocsy-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ocsy-contact-mail-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.ocsy-contact-mail-link:hover {
    border-color: var(--ocsy-orange);
}
.ocsy-contact-sla {
    font-size: 14px;
    color: var(--ocsy-text-dark);
    background-color: var(--ocsy-white);
    border: 1px solid #E2E8F0;
    padding: 12px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: fit-content;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (min-width: 992px) {
    .ocsy-faq-page-container {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 64px;
    }
    .ocsy-faq-nav-sidebar {
        display: block;
    }
} 
        /* --- RESET & VARIABLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --ocsy-blue: #002D62;
            --ocsy-orange: #FF6600;
            --ocsy-text-dark: #1C252C;
            --ocsy-white: #FFFFFF;
            --font-main: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: #f8f9fa;
        }

        /* --- TOP ANNOUNCEMENT BAR --- */
        .ocsy-top-bar {
            background-color: var(--ocsy-blue);
            color: var(--ocsy-white);
            font-size: 13px;
            font-weight: 500;
            padding: 10px 20px;
            text-align: center;
            letter-spacing: 0.3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ocsy-top-bar a {
            color: var(--ocsy-white);
            text-decoration: underline;
            margin-left: 8px;
            font-weight: 600;
        }
        .ocsy-top-bar .separator {
            margin: 0 12px;
            opacity: 0.6;
        }

        /* --- MAIN HEADER NAV --- */
        .ocsy-header {
            background-color: var(--ocsy-white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .ocsy-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo Area */
        .ocsy-logo img {
            height: 52px; /* Adjusted to fit the logo clean and legible */
            display: block;
        }

        /* Navigation Links */
        .ocsy-nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 28px;
        }
        .ocsy-nav-item {
            position: relative;
        }
        .ocsy-nav-link {
            color: var(--ocsy-text-dark);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 8px 0;
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .ocsy-nav-link:hover, .ocsy-nav-item:hover .ocsy-nav-link {
            color: var(--ocsy-orange);
        }

        /* Active State Style from Image */
        .ocsy-nav-item.active .ocsy-nav-link {
            color: var(--ocsy-orange);
            border-bottom: 2px solid var(--ocsy-orange);
        }

        /* Dropdown Arrow Icon */
        .ocsy-arrow {
            border: solid currentColor;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 2.5px;
            transform: rotate(45deg);
            margin-bottom: 3px;
            transition: transform 0.2s ease;
        }
        .ocsy-nav-item:hover .ocsy-arrow {
            transform: rotate(-135deg);
            margin-bottom: -1px;
        }

        /* --- DROPDOWN MENU --- */
        .ocsy-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--ocsy-white);
            min-width: 210px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .ocsy-nav-item:hover .ocsy-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .ocsy-dropdown-link {
            display: block;
            padding: 10px 20px;
            color: var(--ocsy-text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .ocsy-dropdown-link:hover {
            background-color: rgba(255, 102, 0, 0.04);
            color: var(--ocsy-orange);
            padding-left: 24px;
        }

        /* --- ACTION CTA BUTTONS --- */
        .ocsy-cta-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .ocsy-btn {
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s ease;
        }
        
        /* Schedule Call Button (Deep Corporate Blue) */
        .ocsy-btn-primary {
            background-color: var(--ocsy-blue);
            color: var(--ocsy-white);
            border: 1px solid var(--ocsy-blue);
        }
        .ocsy-btn-primary:hover {
            background-color: #001f42;
            border-color: #001f42;
            transform: translateY(-1px);
        }

        /* Book Demo Button (Outline/Orange Accent style) */
        .ocsy-btn-secondary {
            background-color: transparent;
            color: var(--ocsy-orange);
            border: 1.5px solid var(--ocsy-orange);
        }
        .ocsy-btn-secondary:hover {
            background-color: var(--ocsy-orange);
            color: var(--ocsy-white);
            transform: translateY(-1px);
        }

        /* Arrow Icon Up-Right Accent */
        .ocsy-btn-icon {
            font-size: 12px;
            font-weight: bold;
            transform: rotate(0deg);
            transition: transform 0.2s ease;
        }
        .ocsy-btn:hover .ocsy-btn-icon {
            transform: translate(2px, -2px);
        }

        /* --- MOBILE RESPONSIVE TRIGGER (Hides menu for demo simplicity) --- */
        @media (max-width: 1024px) {
            .ocsy-nav-menu, .ocsy-cta-group {
                display: none;
            }
            .ocsy-top-bar {
                font-size: 11px;
            }
        }
        
        /* Add these variables to your main CSS file if not already present */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- HERO BANNER SECTION --- */
.ocsy-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: var(--font-main);
}

.ocsy-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ocsy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 45, 98, 0.92) 0%, 
        rgba(0, 45, 98, 0.75) 50%, 
        rgba(255, 102, 0, 0.25) 100%
    );
    z-index: 2;
}

.ocsy-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 24px;
    text-align: center;
    color: var(--ocsy-white);
}

.ocsy-hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ocsy-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ocsy-banner-btn-main {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--ocsy-blue);
    background-color: var(--ocsy-white);
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ocsy-banner-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background-color: #fdfdfd;
}

.ocsy-arrow-icon {
    font-size: 14px;
    font-weight: 800;
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.ocsy-banner-btn-main:hover .ocsy-arrow-icon {
    transform: scale(1.05);
}

.ocsy-banner-btn-sub {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.ocsy-banner-btn-sub:hover {
    color: var(--ocsy-orange);
    border-color: var(--ocsy-orange);
}

@media (min-width: 640px) {
    .ocsy-hero-actions {
        flex-direction: row;
        gap: 24px;
    }
    .ocsy-banner-btn-sub {
        border-bottom: none;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        border-radius: 50px;
        padding: 16px 32px;
    }
    .ocsy-banner-btn-sub:hover {
        background-color: var(--ocsy-orange);
        border-color: var(--ocsy-orange);
        color: var(--ocsy-white);
        transform: translateY(-2px);
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- ABOUT US SECTION --- */
.ocsy-about-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Left Column Layout --- */
.ocsy-about-main {
    max-width: 680px;
}

.ocsy-about-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.ocsy-about-heading {
    color: var(--ocsy-blue);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.ocsy-about-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ocsy-text-dark);
    font-weight: 600;
    margin-bottom: 24px;
}

.ocsy-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ocsy-text-muted);
    margin-bottom: 20px;
}

/* --- Right Column Layout / Cards --- */
.ocsy-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ocsy-about-card {
    background-color: var(--ocsy-bg-light);
    border-left: 4px solid var(--ocsy-blue);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 20px;
    transition: transform 0.2s ease;
}

.ocsy-about-card:hover {
    transform: translateX(4px);
}

.ocsy-card-icon {
    color: var(--ocsy-orange);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ocsy-card-icon svg {
    width: 100%;
    height: 100%;
}

.ocsy-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 8px;
}

.ocsy-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
}

/* Bottom Approach Component */
.ocsy-approach-box {
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.08);
}

.ocsy-approach-box h4 {
    color: var(--ocsy-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ocsy-approach-box p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.95;
}

.ocsy-approach-box p.ocsy-approach-foot {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.75;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}

/* --- Responsive Layout Breakpoint --- */
@media (min-width: 1024px) {
    .ocsy-about-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-card: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- SERVICES MATRIX --- */
.ocsy-services-section {
    padding: 40px 24px;
    background-color: var(--ocsy-bg-card);
    font-family: var(--font-main);
}

.ocsy-services-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Section Header Styles */
.ocsy-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.ocsy-services-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ocsy-services-heading {
    color: var(--ocsy-blue);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.ocsy-services-subheading {
    color: var(--ocsy-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Grid Framework */
.ocsy-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Clean Dashboard / Bento Box Style Cards */
.ocsy-service-card {
    background-color: var(--ocsy-white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.ocsy-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.05);
}

/* Icons styling */
.ocsy-service-icon {
    color: var(--ocsy-blue);
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 45, 98, 0.04);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
}

.ocsy-service-card:hover .ocsy-service-icon {
    background-color: var(--ocsy-orange);
    color: var(--ocsy-white);
}

.ocsy-service-icon svg {
    width: 100%;
    height: 100%;
}

.ocsy-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 56px; /* Vertical balancing across column tracks */
}

.ocsy-service-desc {
    font-size: 15px;
    color: var(--ocsy-text-dark);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Framework Lists styling */
.ocsy-service-list {
    list-style: none;
    margin-top: auto; /* Pushes list clean to grid bottom alignment */
}

.ocsy-service-list li {
    font-size: 14px;
    color: var(--ocsy-text-muted);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.ocsy-service-list li:last-child {
    margin-bottom: 0;
}

/* Custom list custom check/bullet marker matching brand orange */
.ocsy-service-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: var(--ocsy-orange);
    border-radius: 50%;
}

/* --- Responsive Adaptations --- */
@media (min-width: 640px) {
    .ocsy-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1140px) {
    .ocsy-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .ocsy-service-card {
        padding: 36px 24px;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- SECTION CONTAINER --- */
.ocsy-why-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headings */
.ocsy-why-header {
    margin-bottom: 40px;
}

.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* --- WHY CHOOSE US GRID --- */
.ocsy-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.ocsy-why-card {
    background-color: var(--ocsy-bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.ocsy-why-card:hover {
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.03);
    transform: translateY(-2px);
}

.ocsy-why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 12px;
}

.ocsy-why-card p {
    font-size: 15px;
    color: var(--ocsy-text-muted);
    line-height: 1.6;
}

/* Structural Divider */
.ocsy-divider {
    border: 0;
    height: 1px;
    background-color: #E2E8F0;
    margin: 60px 0;
}

/* --- VALUES GRID --- */
.ocsy-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.ocsy-value-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.ocsy-value-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocsy-white);
    background-color: var(--ocsy-blue);
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
}

.ocsy-value-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 6px;
}

.ocsy-value-item p {
    font-size: 15px;
    color: var(--ocsy-text-muted);
    line-height: 1.6;
}

/* --- CONVERSION CTA BANNER --- */
.ocsy-cta-banner {
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.1);
}

.ocsy-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ocsy-cta-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin-bottom: 12px;
}

.ocsy-cta-content p.ocsy-cta-subtext {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.ocsy-cta-action {
    width: 100%;
}

.ocsy-cta-btn {
    font-family: var(--font-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--ocsy-orange);
    color: var(--ocsy-white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.25s ease;
}

.ocsy-cta-btn:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (min-width: 768px) {
    .ocsy-why-grid, .ocsy-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ocsy-cta-btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .ocsy-cta-banner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
        padding: 56px;
    }
    .ocsy-cta-action {
        width: auto;
        flex-shrink: 0;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- FOUNDER SECTION --- */
.ocsy-founder-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- TOP PROFILE BLOCK --- */
.ocsy-founder-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
}

.ocsy-founder-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ocsy-founder-name {
    color: var(--ocsy-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.ocsy-founder-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ocsy-text-muted);
    margin-bottom: 16px;
}

/* Academic Credentials Badges */
.ocsy-founder-degrees {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.ocsy-founder-degrees span {
    background-color: rgba(0, 45, 98, 0.05);
    color: var(--ocsy-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ocsy-founder-experience {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
    border-left: 3px solid var(--ocsy-orange);
    padding-left: 16px;
}

/* Message Text Block Layout */
.ocsy-founder-message h3 {
    color: var(--ocsy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ocsy-founder-message p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ocsy-text-muted);
    margin-bottom: 16px;
}

/* Callout Text Quote Wrapper */
.ocsy-message-highlight {
    background-color: var(--ocsy-bg-light);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px dashed #E2E8F0;
}

.ocsy-message-highlight p {
    color: var(--ocsy-blue);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.ocsy-message-highlight strong {
    color: var(--ocsy-orange);
}

/* --- BACKGROUND GRID TRACK --- */
.ocsy-bg-header {
    border-top: 1px solid #E2E8F0;
    padding-top: 48px;
    margin-bottom: 32px;
}

.ocsy-bg-header h3 {
    color: var(--ocsy-blue);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ocsy-bg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.ocsy-bg-card {
    background-color: var(--ocsy-bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.25s ease;
}

.ocsy-bg-card:hover {
    border-color: rgba(0, 45, 98, 0.2);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.02);
    transform: translateY(-2px);
}

.ocsy-bg-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 10px;
}

.ocsy-bg-card p {
    font-size: 14.5px;
    color: var(--ocsy-text-muted);
    line-height: 1.6;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (min-width: 768px) {
    .ocsy-bg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ocsy-founder-profile {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 64px;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- WHY & FOCUS AREAS SECTION --- */
.ocsy-focus-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-focus-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

/* Intro Text Columns */
.ocsy-focus-intro {
    max-width: 620px;
}

.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.ocsy-focus-story p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ocsy-text-muted);
    margin-bottom: 16px;
}

.ocsy-focus-story p.ocsy-text-highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--ocsy-text-dark);
    line-height: 1.6;
}

/* Right Side Stack Box */
.ocsy-focus-list-wrapper {
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
}

.ocsy-list-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

/* Clean Dashboard List Layout */
.ocsy-focus-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ocsy-focus-item {
    background-color: var(--ocsy-white);
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.ocsy-focus-item:hover {
    transform: translateX(6px);
    border-color: rgba(255, 102, 0, 0.25);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.04);
}

.ocsy-focus-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--ocsy-orange);
    background-color: rgba(255, 102, 0, 0.06);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.ocsy-focus-item p {
    font-size: 15px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin: 0;
}

/* --- RESPONSIVE LAYOUT BREAKPOINT --- */
@media (min-width: 992px) {
    .ocsy-focus-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- CONTACT US SECTION --- */
.ocsy-contact-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Left Column Info Layout --- */
.ocsy-contact-info-panel {
    max-width: 620px;
}

.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.ocsy-contact-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ocsy-text-muted);
}

.ocsy-contact-hr {
    border: 0;
    height: 1px;
    background-color: #E2E8F0;
    margin: 32px 0;
}

.ocsy-details-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ocsy-detail-block h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ocsy-blue);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ocsy-detail-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
    margin: 0;
}

.ocsy-company-name {
    color: var(--ocsy-text-dark) !important;
}

.ocsy-global-tag {
    color: var(--ocsy-orange) !important;
    font-weight: 600;
    margin-top: 4px;
}

.ocsy-contact-email {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-orange);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
}

.ocsy-contact-email:hover {
    border-color: var(--ocsy-orange);
}

/* --- Right Column Layout / Interactive Block --- */
.ocsy-contact-form-panel {
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.02);
}

.ocsy-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.ocsy-form-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
    margin-bottom: 28px;
}

.ocsy-form-triggers {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.ocsy-trigger-item {
    background-color: var(--ocsy-white);
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s ease;
}

.ocsy-trigger-item:hover {
    transform: translateX(4px);
    border-color: rgba(0, 45, 98, 0.2);
}

.ocsy-trigger-dot {
    width: 6px;
    height: 6px;
    background-color: var(--ocsy-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.ocsy-trigger-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--ocsy-text-dark);
    margin: 0;
}

.ocsy-action-container {
    width: 100%;
}

.ocsy-form-btn {
    font-family: var(--font-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 45, 98, 0.1);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.ocsy-form-btn:hover {
    background-color: #001f42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 45, 98, 0.2);
}

.ocsy-form-btn span {
    transition: transform 0.2s ease;
}

.ocsy-form-btn:hover span {
    transform: translateX(3px);
}

/* --- RESPONSIVE LAYOUT BREAKPOINT --- */
@media (min-width: 992px) {
    .ocsy-contact-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- SECTION SYSTEM --- */
.ocsy-consult-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-consult-container {
    max-width: 1300px;
    margin: 0 auto;
}

.ocsy-consult-header {
    margin-bottom: 40px;
}

.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* --- WHY CONTACT GRID --- */
.ocsy-why-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.ocsy-why-contact-card {
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.ocsy-why-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 45, 98, 0.03);
}

.ocsy-contact-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.ocsy-why-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 8px;
}

.ocsy-why-contact-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
}

/* --- STEP TIMELINE SYSTEM --- */
.ocsy-process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

.ocsy-process-step {
    background: var(--ocsy-white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.ocsy-step-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--ocsy-orange);
    background-color: rgba(255, 102, 0, 0.06);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.ocsy-step-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ocsy-blue);
    margin-bottom: 4px;
}

.ocsy-step-desc {
    font-size: 15px;
    font-weight: 600;
    color: var(--ocsy-text-dark);
    line-height: 1.4;
}

/* --- ASSESSMENT BANNER STYLE --- */
.ocsy-assessment-banner {
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    border-radius: 16px;
    padding: 48px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    align-items: start;
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.08);
}

.ocsy-assessment-content {
    max-width: 820px;
}

.ocsy-assessment-badge {
    background-color: var(--ocsy-orange);
    color: var(--ocsy-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.ocsy-assessment-content h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.ocsy-assessment-lead {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px !important;
    opacity: 1 !important;
}

.ocsy-assessment-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 24px;
}

.ocsy-assessment-footer-tag {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.65;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.ocsy-assessment-footer-tag span {
    color: var(--ocsy-orange);
    font-weight: 700;
}

.ocsy-assessment-action {
    width: 100%;
}

.ocsy-assessment-btn {
    font-family: var(--font-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--ocsy-white);
    color: var(--ocsy-blue);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.ocsy-assessment-btn:hover {
    background-color: var(--ocsy-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (min-width: 640px) {
    .ocsy-process-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .ocsy-process-timeline::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 20px;
        right: 20px;
        height: 1px;
        background-color: #E2E8F0;
        z-index: 1;
    }
}

@media (min-width: 768px) {
    .ocsy-why-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ocsy-assessment-btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .ocsy-assessment-banner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
        padding: 56px;
    }
    .ocsy-assessment-action {
        width: auto;
        flex-shrink: 0;
    }
}

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- SERVICE SECTION STYLES --- */
.ocsy-privacy-service-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-privacy-service-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header Markers */
.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.ocsy-section-subheading {
    font-size: 18px;
    font-weight: 600;
    color: var(--ocsy-text-muted);
    margin-bottom: 40px;
}

/* Two Column Introduction Grid */
.ocsy-privacy-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.ocsy-intro-text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ocsy-text-muted);
    margin-bottom: 16px;
}

.ocsy-intro-text p:last-child {
    margin-bottom: 0;
}

/* Objective Accent Callout Box */
.ocsy-privacy-objective {
    background-color: var(--ocsy-bg-light);
    border-left: 4px solid var(--ocsy-blue);
    padding: 24px 32px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 80px;
}

.ocsy-privacy-objective h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ocsy-orange);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ocsy-privacy-objective p {
    font-size: 16px;
    font-weight: 700;
    color: var(--ocsy-blue);
    line-height: 1.5;
    margin: 0;
}

/* Middle Header */
.ocsy-service-mid-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.ocsy-service-mid-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ocsy-blue);
    margin-bottom: 12px;
}

.ocsy-service-mid-header p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
}

/* --- BENEFITS MATRIX GRID --- */
.ocsy-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.ocsy-benefit-card {
    background: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.25s ease;
}

.ocsy-benefit-card:hover {
    border-color: rgba(255, 102, 0, 0.25);
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.03);
    transform: translateY(-2px);
}

.ocsy-benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 12px;
}

.ocsy-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
    margin: 0;
}

/* --- CHALLENGES DASHBOARD PANEL --- */
.ocsy-challenges-panel {
    background-color: var(--ocsy-blue);
    color: var(--ocsy-white);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.ocsy-challenges-header h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.ocsy-challenges-header p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.ocsy-challenges-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ocsy-challenge-item {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ocsy-challenge-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--ocsy-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.ocsy-challenge-item p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

/* --- RESPONSIVE LAYOUT BREAKPOINTS --- */
@media (min-width: 768px) {
    .ocsy-privacy-intro-grid, .ocsy-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ocsy-benefit-card-full {
        grid-column: span 2;
    }
    .ocsy-challenges-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ocsy-challenges-panel {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
        padding: 56px;
    }
    .ocsy-challenges-list {
        grid-template-columns: 1fr;
    }
} 

/* --- BRAND CONFIGURATION --- */
:root {
    --ocsy-blue: #002D62;
    --ocsy-orange: #FF6600;
    --ocsy-text-dark: #1C252C;
    --ocsy-text-muted: #55626D;
    --ocsy-bg-light: #F8FAFC;
    --ocsy-white: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- WHY CHOOSE US SECTION --- */
.ocsy-choose-section {
    padding: 40px 24px;
    background-color: var(--ocsy-white);
    font-family: var(--font-main);
    color: var(--ocsy-text-dark);
}

.ocsy-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.ocsy-choose-header {
    margin-bottom: 56px;
}

.ocsy-section-tag {
    display: inline-block;
    color: var(--ocsy-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ocsy-section-heading {
    color: var(--ocsy-blue);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Grid Layout Framework */
.ocsy-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Premium Dashboard Card Design */
.ocsy-choose-card {
    background-color: var(--ocsy-bg-light);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Top-Border Branding Accent line on hover */
.ocsy-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--ocsy-blue);
    transform: translateY(-4px);
    transition: transform 0.25s ease;
}

.ocsy-choose-card:hover {
    background-color: var(--ocsy-white);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 45, 98, 0.04);
    transform: translateY(-3px);
}

.ocsy-choose-card:hover .ocsy-card-accent {
    transform: translateY(0);
    background-color: var(--ocsy-orange);
}

/* Typography styles inside cards */
.ocsy-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ocsy-blue);
    margin-bottom: 16px;
    line-height: 1.4;
}

.ocsy-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ocsy-text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.ocsy-choose-card p:last-child {
    margin-bottom: 0;
}

.ocsy-card-detail {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ocsy-text-muted);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (min-width: 768px) {
    .ocsy-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}