﻿.who-section {
    background: #f8fafc;
    padding: 60px 20px;
}

.who-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.who-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #185a9d, #43cea2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.who-intro {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.who-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.who-card--highlight {
    border-color: #43cea2;
    box-shadow: 0 8px 25px rgba(67, 206, 162, 0.25);
}

.who-card--highlightred {
    border-color: #e63946;
    box-shadow: 0 8px 25px rgba(67, 206, 162, 0.25);
}

.who-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #185a9d;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .who-list li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 10px;
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
    }

        .who-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #43cea2;
            font-size: 1.2rem;
        }

.who-list--negative li::before {
    color: #e63946;
}

.who-cta {
    text-align: center;
    margin-top: 20px;
}

.who-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    background: linear-gradient(to right, #185a9d, #43cea2);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.2s ease;
}

    .who-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    }
