    .service-page-wrapper {
        background-color: #f4f7f6; /* Soft professional grey-green tint */
        padding: 80px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .service-main-card {
        background: #ffffff;
        max-width: 1000px; 
        margin: 0 auto;
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
    }

    /* Decorative Top Bar */
    .service-main-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg, #589861, #002D62);
    }

    .service-header-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .service-badge {
        background: rgba(88, 152, 97, 0.1);
        color: #589861;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 20px;
    }

    .service-main-title {
        color: #002D62;
        font-weight: 800;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .service-description {
        font-size: 18px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Advisory Sub-Sections */
    .advisory-group {
        margin-bottom: 40px;
    }

     .tax-section-title {
        color: #002D62;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        padding-bottom: 10px;
        border-bottom: 2px solid #589861;
        display: inline-block;
    }

    .tax-list {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .tax-list li {
        position: relative;
        padding: 12px 0 12px 35px;
        color: #444;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .tax-list li:last-child { border-bottom: none; }

    .tax-list li::before {
        content: "\f0a4"; /* FontAwesome Hand Icon from your image */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #589861;
        font-size: 18px;
    }

    .tax-list li:hover {
        padding-left: 40px;
        color: #002D62;
        background-color: #fafafa;
    }

    .transaction-box {
        background: #f9f9f9;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #589861;
        margin-bottom: 30px;
    }
     /* Feature Grid */
    .service-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 50px 0;
    }

    .feature-box {
        background: #ffffff;
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

    .feature-box:hover {
        border-color: #589861;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(88, 152, 97, 0.1);
    }

    .feature-box i {
        background: #589861;
        color: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 20px;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .feature-box span {
        font-weight: 700;
        color: #002D62;
        font-size: 16px;
    }

    /* Content Styling */
    .content-paragraph {
        color: #555;
        line-height: 1.9;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .highlight-box {
        background: #f9f9f9;
        padding: 30px;
        border-radius: 15px;
        border-left: 5px solid #589861;
        margin: 40px 0;
    }

    /* List Styles using Font Awesome icons */
    .analysis-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .analysis-list li {
        position: relative;
        padding: 12px 0 12px 35px;
        color: #444;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .analysis-list li:last-child { border-bottom: none; }

    .analysis-list li::before {
        content: "\f0a4"; /* Font Awesome Hand Pointing Icon from Taxation page */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #589861;
        font-size: 18px;
    }

    .analysis-list li:hover {
        padding-left: 42px;
        color: #002D62;
        background-color: #fafafa;
    }
    
    .service-footer-text {
        background: #f9f9f9;
        padding: 30px;
        border-radius: 12px;
        border-left: 5px solid #002D62;
        color: #444;
        font-style: italic;
        line-height: 1.7;
        margin-top: 40px;
    }

    @media (max-width: 768px) {
        .service-main-card { padding: 30px; }
        .service-main-title { font-size: 30px; }
        .service-feature-grid { grid-template-columns: 1fr; }
    }