.cost_delay .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.cost_delay .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.cost_delay .form-group {
    position: relative;
}

.cost_delay .currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-weight: 600;
    pointer-events: none;
    margin-top: 16px;
}

.cost_delay .currency-input {
    padding-left: 40px !important;
}

.cost_delay .results-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.cost_delay .results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.cost_delay .result-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cost_delay .result-card:hover {
    transform: translateY(-5px);
}

.cost_delay .result-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.cost_delay .without-delay {
    border-left-color: #667eea;
}

.cost_delay .with-delay {
    border-left-color: #667eea;
}

.cost_delay .potential-loss {
    border-left-color: #667eea;
    grid-column: 1 / -1;
    text-align: center;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

.cost_delay .result-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cost_delay .result-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.cost_delay .potential-loss .result-amount {
    font-size: 2.5rem;
}

.cost_delay .additional-info {
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
    border: 2px solid #764ba2;
}

.cost_delay .additional-info p {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cost_delay .highlight {
    color: #2b6cb0;
    font-weight: 700;
}

.cost_delay .disclaimer {
    background: #fffbeb;
    border: 1px solid #f6e05e;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.cost_delay .disclaimer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #744210;
    margin-bottom: 10px;
}

.cost_delay .disclaimer-icon {
    width: 20px;
    height: 20px;
    background: #f6e05e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.cost_delay .disclaimer p {
    color: #744210;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cost_delay .header h1 {
        font-size: 2rem;
    }
    
    .cost_delay .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cost_delay .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cost_delay .potential-loss {
        grid-column: 1;
    }
    
    .cost_delay .result-amount {
        font-size: 1.5rem;
    }
    
    .cost_delay .potential-loss .result-amount {
        font-size: 2rem;
    }
}

.cost_delay .animate-in {
    animation: slideInUp 0.6s ease-out;
}

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