﻿
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

/* Income Types Grid */
.income-types-section {
    padding: 80px 20px;
    background: white;
}

.income-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.income-type-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

    .income-type-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }

    .income-type-card i {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .income-type-card h3 {
        font-size: 18px;
        font-weight: bold;
    }

/* Income Detail Section */
.income-detail-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.income-detail {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

    .income-detail h2 {
        color: #667eea;
        font-size: 32px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .income-detail h2 i {
            font-size: 36px;
        }

.income-detail-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.income-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Simple Box Style */
.simple-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #667eea;
}

    .simple-box h4 {
        color: #667eea;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .simple-box ul {
        list-style: none;
        padding: 0;
    }

        .simple-box ul li {
            padding: 10px 0;
            color: #555;
            font-size: 16px;
            border-bottom: 1px solid #e0e0e0;
        }

            .simple-box ul li:last-child {
                border-bottom: none;
            }

            .simple-box ul li strong {
                color: #333;
            }

/* Table Styles */
.income-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

    .income-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .income-table th {
        padding: 18px;
        text-align: left;
        font-size: 16px;
        font-weight: bold;
    }

    .income-table td {
        padding: 15px 18px;
        color: #555;
        border-bottom: 1px solid #f0f0f0;
    }

    .income-table tbody tr:hover {
        background: #f8f9fa;
    }

    .income-table tbody tr:last-child td {
        border-bottom: none;
    }

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
}

    .highlight-box h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .highlight-box p {
        font-size: 18px;
        margin: 0;
        color: white;
    }

    .highlight-box .amount {
        font-size: 42px;
        font-weight: bold;
        margin: 15px 0;
    }

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #339af0 0%, #1c7ed6 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .info-banner i {
        font-size: 32px;
    }

    .info-banner p {
        margin: 0;
        color: white;
        font-size: 16px;
    }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

    .stat-box .stat-value {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .stat-box .stat-label {
        font-size: 14px;
        opacity: 0.9;
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 20px;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .income-detail {
        padding: 25px;
    }

        .income-detail h2 {
            font-size: 24px;
        }

    .income-table {
        font-size: 14px;
    }

        .income-table th,
        .income-table td {
            padding: 10px;
        }

    .cta-section h2 {
        font-size: 28px;
    }
}
