:root {
    --primary: #c91b3f;
    --primary-glow: rgba(201, 27, 63, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(255, 255, 255, 0.5);
    --text-dark: #0f172a;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(201, 27, 63, 0.2);
}

.accent-divider {
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #e11d48 100%);
    border-radius: 10px;
    margin: 20px 0;
}

.lead-corporate {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.7;
}

.text-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 27, 63, 0.1) 0%, rgba(201, 27, 63, 0.02) 100%);
    color: #c91b3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(201, 27, 63, 0.1);
}
