.about-section {
    background-color: #ffffff;
    padding: 70px 0 60px;
}

.about-card {
    background-color: #ffffff;
    padding: 20px 0;
    position: relative;
}

.about-flex-container {
    display: flex;
    gap: 20px;
    position: relative;
    width: 100%;
}

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

.about-flex-col.left-col {
    padding-bottom: 40px;
}

.about-flex-col.right-col {
    padding-top: 40px;
}

.about-grid-item {
    border-radius: 24px;
    overflow: hidden;
    background-color: #e2e2e2;
    position: relative;
    width: 100%;
}

.about-grid-item.tall {
    height: 260px;
}

.about-grid-item.short {
    height: 180px;
}

.about-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-medallion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #e71f85;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(231, 28, 133, 0.25);
    z-index: 3;
}

.about-medallion .medallion-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    padding-left: 50px;
}

.about-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: #a0a0b0;
    margin-bottom: 0.8rem;
    display: block;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1e1e24;
    margin-bottom: 1.5rem;
}

.about-title .highlight {
    color: #e71f85;
}

.about-subtitle {
    font-size: 0.95rem;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e71f85;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: lowercase;
    color: #9a9aa8;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .about-flex-container {
        gap: 12px;
    }
    
    .about-flex-col {
        gap: 12px;
    }
    
    .about-flex-col.left-col {
        padding-bottom: 20px;
    }

    .about-flex-col.right-col {
        padding-top: 20px;
    }

    .about-grid-item.tall {
        height: 180px;
    }

    .about-grid-item.short {
        height: 130px;
    }
    
    .about-medallion {
        width: 54px;
        height: 54px;
        border-width: 4px;
    }

    .about-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
}