/* Fees Page Specific Styles */

/* Fee Notice */
.fee-notice {
    background: var(--light-bg);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fee-notice i {
    font-size: 2.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.fee-notice p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight-card p {
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-color);
}

/* Fee Table */
.fee-table {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
}

.fee-note {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-top: 1rem;
}

/* Method Grid */
.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.fee-amount {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.method-card ul {
    list-style: none;
    margin: 0;
}

.method-card li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.method-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
}

/* Withdrawal Info */
.withdrawal-info h3 {
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
}

.withdrawal-info h3:first-child {
    margin-top: 0;
}

/* Services List */
.services-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-item p {
    margin: 0;
    font-size: 1.6rem;
}

/* Discount Cards */
.discount-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.discount-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.discount-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Calculation Example */
.example-box {
    background: var(--light-bg);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.example-box p {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.example-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-info {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.method-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid,
    .method-grid,
    .discount-cards,
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .fee-notice {
        flex-direction: column;
        text-align: center;
    }

    .fee-notice i {
        margin: 0 auto;
    }

    .table-header,
    .table-row {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .method-card,
    .service-item,
    .discount-card,
    .method-info {
        padding: 2rem;
    }

    .fee-amount {
        font-size: 2rem;
    }
}
