/* About Us Intro Box */
.about-intro-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-left: 5px solid var(--primary);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.about-intro-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.about-intro-box p:last-child {
    margin-bottom: 0;
}

.brands-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.brands-box h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.brands-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin: 0;
    letter-spacing: 1px;
}

/* About Grid Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(236, 20, 49, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(236, 20, 49, 0.3);
}

.about-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text);
}

.about-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: center;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* About Commitment Box */
.about-commitment {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.about-commitment i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.3;
}

.about-commitment p {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}