body {
    background: linear-gradient(135deg, #e6f6fc 0%, #f7fbff 100%);
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Fee wrapper styles */
.fee_wrapper {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 2px 24px rgba(0,153,200,0.10);
    margin-bottom: 30px;
    position: relative;
    transition: box-shadow 0.25s;
    overflow: hidden;
    border: 2px solid transparent;
}

.fee_wrapper:hover {
    box-shadow: 0 8px 40px 0 rgba(0,153,200,0.18), 0 1.5px 8px 0 rgba(0,153,200,0.10);
    border: 2px solid #00c6d7;
}

/* Top fee section styles */
.top_fee {
    margin-bottom: 2rem;
}

.top_fee h5 {
    background: linear-gradient(90deg, #0099c8 60%, #00c6d7 100%);
    color: #fff;
    font-size: 1.35rem;
    text-align: center;
    padding: 15px 0 13px 0;
    border-radius: 12px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0,153,200,0.10);
}

/* Table styles */
.witr_amar_table {
    margin-bottom: 30px;
    background: linear-gradient(135deg, #e6f6fc, #f7fbff);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.witr_amar_table:empty,
.witr_amar_table table:empty,
.witr_amar_table tbody:empty {
    display: none;
}

.witr_amar_table:last-child {
    margin-bottom: 0;
}

.witr_amar_table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.witr_amar_table th {
    background: linear-gradient(90deg, #0099c8 60%, #00c6d7 100%);
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.13rem;
    letter-spacing: 1px;
}

.witr_amar_table td {
    padding: 28px 20px;
    border-bottom: 1px solid rgba(0,153,200,0.10);
    background: rgba(255,255,255,0.92);
    transition: all 0.2s;
}

.witr_amar_table tr:last-child td {
    border-bottom: none;
}

.witr_amar_table tr.odd td {
    background: rgba(255,255,255,0.85);
}

.witr_amar_table tr:hover td {
    background: rgba(255,255,255,1);
    box-shadow: 0 2px 12px rgba(0,153,200,0.08);
}

/* Link styles */
.witr_amar_table a {
    color: #0099c8;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.witr_amar_table a:hover {
    color: #00c6d7;
    transform: translateX(5px);
}

/* Summary paragraph styles */
.witr_amar_table p {
   margin: 12px 0 24px 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgb(0 198 215);
    border-radius: 8px;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .fee_wrapper {
        padding: 20px;
        border-radius: 12px;
    }
    
    .top_fee h5 {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
    
    .witr_amar_table td {
        padding: 20px 15px;
    }
    
    .witr_amar_table th {
        padding: 12px 15px;
        font-size: 1.05rem;
    }
    
    .witr_amar_table p {
        font-size: 0.9rem;
        padding: 10px 12px;
        margin-top: 10px;
    }
} 
        .reference-item {
            border-bottom: 1px dashed #ccc;
            padding: 15px 0;
            margin-bottom: 0;
        }

        .reference-item:last-child {
            border-bottom: none;
        }

        .counter-card {
            padding: 2rem;
            text-align: center;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .counter-card:hover {
            transform: translateY(-5px);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .counter-text {
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.2rem;
                line-height: 1.4;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .info-title {
                font-size: 1rem;
                line-height: 1.4;
            }

            .info-desc {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .info-card {
                padding: 15px;
            }

            .reference-item {
                font-size: 0.9rem;
                padding: 10px 0;
            }
        }