.EPF .form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.EPF .form-group {
    margin-bottom: 20px;
}

.EPF .results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    color: white;
    display: none;
}

.EPF .result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.EPF .result-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.EPF .result-card h3 {
    font-size: 0.9em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.EPF .result-card .amount {
    font-size: 1.4em;
    font-weight: bold;
}

.EPF .final-amount {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
}

.EPF .final-amount h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.EPF .final-amount .total {
    font-size: 2.2em;
    font-weight: bold;
}

.EPF .breakdown {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    color: #495057;
}

.EPF .breakdown h3 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.EPF .breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.EPF .breakdown-item:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #1e3c72;
}

.EPF .info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.EPF .info-box {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 20px;
}

.EPF .info-box h3 {
    color: #0d47a1;
    margin-bottom: 10px;
}

.EPF .info-box ul {
    color: #1565c0;
    padding-left: 20px;
}

.EPF .info-box li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .EPF .form-section,
    .EPF .result-grid,
    .EPF .info-section {
        grid-template-columns: 1fr;
    }
    
    .EPF .container {
        padding: 20px;
        margin: 10px;
    }
    
    .EPF .header h1 {
        font-size: 1.8em;
    }
}