.home_loan .content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.home_loan .section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

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

.home_loan .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

.home_loan .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.home_loan .form-group input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.home_loan .results {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 5px solid #764ba2;
}

.home_loan .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

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

.home_loan .result-label {
    font-weight: 600;
    color: #495057;
}

.home_loan .result-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
}

.home_loan .comparison-section {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.home_loan .comparison-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.home_loan .comparison-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.home_loan .comparison-card:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.home_loan .comparison-card.winner {
    border-color: #27ae60;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.home_loan .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.home_loan .winner .card-title {
    color: #27ae60;
}

.home_loan .recommendation {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
}

.home_loan .recommendation h3 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.home_loan .recommendation p {
    color: #d35400;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .home_loan .content {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .home_loan .comparison-results {
        grid-template-columns: 1fr;
    }
}

.home_loan .highlight {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #3498db;
}

.home_loan .currency {
    color: #764ba2;
    font-weight: bold;
}

.home_loan .animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}