.about-us-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: rgba(166, 126, 247, 0.1);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(166, 126, 247, 0.1), transparent);
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 67, 214, 0.2);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(166, 126, 247, 0.4);
}

.about-card h3 {
    color: #d4bafd;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-values {
    background: linear-gradient(135deg, rgba(166, 126, 247, 0.15) 0%, rgba(108, 67, 214, 0.15) 100%);
    padding: 20px;
    border-radius: 12px;
}

.about-values h3 {
    color: #d4bafd;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-values ul {
    list-style: none;
    padding-left: 0;
}

.about-values li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.about-values li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #a67ef7;
    text-shadow: 0 0 8px rgba(166, 126, 247, 0.6);
}