





/* Benefits Section */
.benefits-section {
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Pricing Table */
.pricing-table {
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

th {
    background: #e5e5e5;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-align: center;
    border: 1px solid #ccc;
}

td {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
    border: 1px solid #ccc;
}

.row-gray {
    background: #f0f0f0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    text-align: center;
    padding: 20px;
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-line {
    width: 60px;
    height: 2px;
    background: #ff6b35;
    margin: 0 15px;
}

.benefit-title {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
    white-space: nowrap;
}

.benefit-content {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.payment-plan {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.percentage-large {
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.percentage-small {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.divider {
    font-size: 48px;
    color: #000;
    margin: 0 20px;
}

.payment-details {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
}

.payment-small {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

.big-percentage {
    font-size: 72px;
    font-weight: 900;
    color: #000;
    line-height: 0.8;
    margin-bottom: 10px;
}

.benefit-main-text {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    text-align: center;
}

.benefit-sub-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-top: 5px;
}

.first-text {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b35;
    line-height: 0.8;
    margin-bottom: 10px;
}

.first-i {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {



    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-details {
        flex-direction: column;
        gap: 10px;
    }

    .big-percentage {
        font-size: 56px;
    }

    .first-text {
        font-size: 36px;
    }

    th, td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .rera-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sip-text {
        font-size: 36px;
    }

    .project-name {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .big-percentage {
        font-size: 48px;
    }

    .benefit-main-text {
        font-size: 16px;
    }

    th, td {
        padding: 8px 4px;
        font-size: 10px;
    }
}