    /* =========================================
       PREMIUM PRIVATE EXECUTIVE HEALTH ADVISORY
       Enhanced Medical Governance Design
    ========================================= */
    
    .private-advisory {
        padding: 100px 0;
        background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .private-advisory::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #3fa796, transparent);
    }
    
    .container-narrow {
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 2;
    }
    
    /* Advisory Header Section */
    .advisory-header {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
    }
    
    .advisory-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(15, 61, 46, 0.05);
        color: #0f3d2e;
        padding: 12px 28px;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.8px;
        margin-bottom: 40px;
        border: 1px solid rgba(63, 167, 150, 0.2);
        text-transform: uppercase;
        backdrop-filter: blur(10px);
    }
    
    .advisory-badge i {
        color: #3fa796;
    }
    
    .advisory-title {
        font-size: 48px;
        color: #0f3d2e;
        margin-bottom: 32px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        text-align: center;
    }
    
    .advisory-title span {
        color: #3fa796;
        font-weight: 800;
    }
    
    /* Introduction Text */
    .intro-text {
        font-size: 20px;
        line-height: 1.7;
        color: #4a5568;
        margin-bottom: 24px;
        text-align: center;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .intro-text:last-child {
        margin-bottom: 0;
    }
    
    /* Executive Focus Section */
    .executive-focus {
        background: #ffffff;
        padding: 48px;
        border-radius: 16px;
        border: 1px solid rgba(15, 61, 46, 0.08);
        margin: 60px auto;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(15, 61, 46, 0.04);
    }
    
    .executive-focus::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0f3d2e, #3fa796);
    }
    
    .executive-focus h3 {
        font-size: 24px;
        color: #0f3d2e;
        margin-bottom: 32px;
        font-weight: 700;
        text-align: center;
        position: relative;
        padding-bottom: 16px;
    }
    
    .executive-focus h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #3fa796;
    }
    
    .executive-focus ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .executive-focus li {
        padding: 20px;
        color: #4a5568;
        font-size: 16px;
        line-height: 1.5;
        position: relative;
        padding-left: 56px;
        background: #f8faf9;
        border-radius: 8px;
        border: 1px solid rgba(15, 61, 46, 0.05);
        transition: all 0.3s ease;
    }
    
    .executive-focus li:hover {
        background: rgba(63, 167, 150, 0.04);
        border-color: rgba(63, 167, 150, 0.2);
        transform: translateY(-2px);
    }
    
    .executive-focus li::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 20px;
        width: 24px;
        height: 24px;
        background: #3fa796;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 12px;
    }
    
    .executive-focus li:nth-child(1)::before { content: 'M'; }
    .executive-focus li:nth-child(2)::before { content: 'E'; }
    .executive-focus li:nth-child(3)::before { content: 'T'; }
    .executive-focus li:nth-child(4)::before { content: 'F'; }
    .executive-focus li:nth-child(5)::before { content: 'C'; }
    
    /* Protocol Sections */
    .protocol-section {
        margin-bottom: 80px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(15, 61, 46, 0.08);
        position: relative;
    }
    
    .protocol-section:last-of-type {
        border-bottom: none;
        margin-bottom: 60px;
    }
    
    .protocol-section h2 {
        font-size: 32px;
        color: #0f3d2e;
        margin-bottom: 32px;
        font-weight: 700;
        text-align: center;
        position: relative;
        padding-bottom: 20px;
    }
    
    .protocol-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #3fa796;
    }
    
    .protocol-section p {
        font-size: 18px;
        line-height: 1.7;
        color: #4a5568;
        margin-bottom: 24px;
        text-align: center;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Enhanced Protocol List */
    .protocol-list {
        list-style: none;
        padding: 0;
        margin: 40px auto;
        max-width: 720px;
    }
    
    .protocol-list li {
        padding: 20px 24px;
        color: #4a5568;
        font-size: 17px;
        line-height: 1.6;
        position: relative;
        padding-left: 64px;
        margin-bottom: 16px;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid rgba(15, 61, 46, 0.08);
        transition: all 0.3s ease;
    }
    
    .protocol-list li:hover {
        background: #f8faf9;
        border-color: rgba(63, 167, 150, 0.2);
        transform: translateX(4px);
    }
    
    .protocol-list li::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        background: #f0f7f5;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3fa796;
        font-weight: 600;
        font-family: monospace;
        font-size: 14px;
    }
    
    .protocol-list li:nth-child(1)::before { content: '01'; }
    .protocol-list li:nth-child(2)::before { content: '02'; }
    .protocol-list li:nth-child(3)::before { content: '03'; }
    .protocol-list li:nth-child(4)::before { content: '04'; }
    
    /* Premium Application Form */
    .advisory-form {
        background: #ffffff;
        padding: 60px;
        border-radius: 20px;
        border: 1px solid rgba(15, 61, 46, 0.1);
        box-shadow: 0 16px 64px rgba(15, 61, 46, 0.08);
        margin-top: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .advisory-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0f3d2e, #3fa796);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 48px;
    }
    
    .form-header h2 {
        font-size: 36px;
        color: #0f3d2e;
        margin-bottom: 16px;
        font-weight: 700;
        text-align: center;
    }
    
    .form-header p {
        font-size: 18px;
        color: #718096;
        line-height: 1.6;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .form-group {
        margin-bottom: 32px;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    .form-group label {
        display: block;
        font-size: 15px;
        color: #0f3d2e;
        margin-bottom: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        color: #4a5568;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3fa796;
        box-shadow: 0 0 0 4px rgba(63, 167, 150, 0.1);
    }
    
    .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }
    
    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 20px;
    }
    
    .form-required {
        color: #e53e3e;
        margin-left: 4px;
    }
    
    /* Enhanced Confidential Notice */
    .confidential-notice {
        background: linear-gradient(135deg, #f0f7f5 0%, #e8f3f0 100%);
        padding: 28px;
        border-radius: 12px;
        border: 1px solid rgba(63, 167, 150, 0.3);
        margin: 40px 0;
        position: relative;
        overflow: hidden;
    }
    
    .confidential-notice::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #3fa796;
    }
    
    .confidential-notice i {
        color: #3fa796;
        font-size: 24px;
        margin-right: 16px;
        vertical-align: middle;
    }
    
    .confidential-notice span {
        font-size: 16px;
        line-height: 1.6;
        color: #4a5568;
        vertical-align: middle;
    }
    
    /* Premium Submit Button */
    .form-submit {
        text-align: center;
        margin-top: 48px;
    }
    
    .btn-submit {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background: linear-gradient(135deg, #0f3d2e 0%, #1f6f5b 100%);
        color: #ffffff;
        padding: 20px 48px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 17px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }
    
    .btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .btn-submit:hover::before {
        left: 100%;
    }
    
    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(15, 61, 46, 0.2);
    }
    
    /* Form Footer */
    .form-footer {
        text-align: center;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(15, 61, 46, 0.08);
        font-size: 15px;
        color: #718096;
        line-height: 1.6;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .advisory-title {
            font-size: 40px;
        }
        
        .executive-focus ul {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .private-advisory {
            padding: 60px 0;
        }
        
        .advisory-title {
            font-size: 32px;
        }
        
        .intro-text {
            font-size: 18px;
        }
        
        .executive-focus {
            padding: 32px;
        }
        
        .executive-focus li {
            padding-left: 52px;
        }
        
        .protocol-section h2 {
            font-size: 28px;
        }
        
        .protocol-list li {
            padding-left: 56px;
        }
        
        .advisory-form {
            padding: 40px 32px;
        }
        
        .form-header h2 {
            font-size: 28px;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .btn-submit {
            width: 100%;
            justify-content: center;
            padding: 18px 32px;
        }
    }
    
    @media (max-width: 480px) {
        .advisory-title {
            font-size: 28px;
        }
        
        .advisory-badge {
            padding: 10px 20px;
            font-size: 12px;
        }
        
        .executive-focus {
            padding: 24px;
        }
        
        .protocol-section {
            margin-bottom: 60px;
            padding-bottom: 40px;
        }
        
        .protocol-section h2 {
            font-size: 24px;
        }
        
        .advisory-form {
            padding: 32px 24px;
        }
        
        .form-header h2 {
            font-size: 24px;
        }
    }