/* Value Proposition Styles */
.value-proposition {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.value-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.3);
}

.value-proposition h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.value-item:nth-child(2) {
    border-left-color: #764ba2;
}

.value-item:nth-child(3) {
    border-left-color: #f093fb;
}

.value-item:nth-child(4) {
    border-left-color: #ff6b6b;
}

.value-icon {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 0.5rem;
    display: inline-block;
}

.value-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.value-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.value-note {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.value-note strong {
    color: #2c3e50;
}

.value-note a {
    color: #667eea;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #667eea;
    transition: all 0.3s ease;
}

.value-note a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Mobile Responsiveness for Value Proposition */
@media (max-width: 768px) {
    .value-proposition {
        padding: 1.5rem;
    }
    
    .value-proposition h3 {
        font-size: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-note {
        padding: 1rem;
        font-size: 0.95rem;
    }
}
