:root {
        --brand-blue: #004999;
        --brand-yellow: #f0ff00;
    }

    /* Base Styling */
    .index { background-color: #fff; font-size: 1.1rem; line-height: 1.6; }
    
    h2 { color: var(--brand-blue); font-weight: 800; font-size: 2.2rem; margin-bottom: 20px; }
    h3 { color: var(--brand-blue); font-weight: 700; font-size: 1.6rem; margin-top: 30px; margin-bottom: 15px; }

    .compact-card {
        border: 1px solid #dee2e6;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 20px;
        background: #fff;
    }
    
    /* Improved Benefits Box for side-by-side layout */
    .benefits-box { 
        background-color: var(--brand-blue); 
        color: white; 
        border-radius: 12px; 
        padding: 20px; 
        margin-bottom: 25px; 
    }
    
    .process-step {
        background: #f1f3f5;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 12px;
        border-left: 6px solid var(--brand-blue);
        font-weight: 700;
        font-size: 1.1rem;
        color: #333;
    }

    /* Professional Pricing List */
    .price-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed #ccc;
    }
    .price-item:last-child { border-bottom: none; }
    .price-item span { font-size: 0.95rem; line-height: 1.2; color: #555; padding-right: 10px; }
    .price-item strong { color: var(--brand-blue); font-size: 1.2rem; white-space: nowrap; }

    /* Button Styles */
    .btn-brand-yellow {
        background-color: var(--brand-yellow);
        color: #000 !important;
        font-weight: 800;
        border-radius: 10px;
        padding: 12px 35px;
        display: inline-block;
        text-decoration: none !important;
        font-size: 1.1rem;
        transition: 0.2s;
        border: none;
    }
    .btn-brand-yellow:hover { background-color: #e6f400; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

    .btn-call {
        background-color: #fff;
        color: var(--brand-blue) !important;
        font-weight: 700;
        border: 2px solid var(--brand-blue);
        border-radius: 10px;
        padding: 8px 20px;
        font-size: 1rem;
        display: inline-block;
        margin-top: 10px;
        text-decoration: none !important;
    }

    .partner-bar {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 30px;
        border-left: 8px solid var(--brand-yellow);
        margin-top: 40px;
    }