/* Additional styling for About Us page */
.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #eb3237 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.value-card, .audience-card {
    background:#141414;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover, .audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 110, 0.3);
}

.value-icon, .audience-icon {
    width: 60px;
    height: 60px;
    background: #eb3237;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.offer-item {
    display: flex;
    gap: 0;
    padding: 15px;
    background: rgb(20 20 20);
    border-radius: 15px;
    transition: all 0.3s
    ease;
    flex-direction: column;
    height: 100%;
}


.offer-number {
    font-size: 30px;
    font-weight: 700;
    background: #eb3237;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 50px;
}

.statistics-wrapper {
    border-radius: 20px;
    padding: 60px 40px;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #eb3237;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.cta-wrapper {
    background: linear-gradient(135deg, #ff4466 0%, #401010 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 0;
}
