/* Expertise Section */
.expertise-box,
.core-values-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.expertise-box:hover,
.core-values-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.section-label span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: #f7eadc;
    color: #8a4b16;
    font-size: 14px;
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 14px;
    background: #faf7f2;
    border: 1px solid rgba(138, 75, 22, 0.12);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #f3e4d4;
    transform: translateY(-3px);
}

.expertise-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #8a4b16;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.expertise-item span {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.core-values-list li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.core-values-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.core-values-list i {
    color: #8a4b16;
    font-size: 18px;
    margin-top: 4px;
}

.core-values-list strong {
    display: block;
    color: #222;
    font-size: 16px;
    margin-bottom: 4px;
}

.core-values-list p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .expertise-box,
    .core-values-box {
        padding: 24px;
        border-radius: 18px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        padding: 14px;
    }

    .expertise-item span {
        font-size: 14px;
    }

    .core-values-list li {
        gap: 12px;
    }
}
