/* Company-info of Service Page Styles */

.company-info-subtitle {
    margin-top: 20px;
}

.company-info-subtitle h3 {
    color: #cccccc;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.last-updated {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.company-info-content-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.company-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-info-content>.breadcrumb-inner,
.company-info-section>.breadcrumb-inner {
    margin-bottom: 40px;
}

.company-info-section {
    margin-bottom: 50px;
}

.company-info-section:last-child {
    margin-bottom: 0;
}

.company-info-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.company-info-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 20px;
    margin-bottom: 12px;
}

.company-info-section h5 {
    padding-top: 15px;
    padding-bottom: 10px;
}

.company-info-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.company-info-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.company-info-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    /* display: flex; */
    align-items: center;
}

.company-info-section ul li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #d4a574;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
    top: -5px;
}

.p-left-15 {
    padding-left: 15px;
}

.image-preview {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.image-preview-item {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    position: relative;
    background: #fafafa;
}

.image-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.image-lightbox.hide {
    display: none;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.image-lightbox .lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .company-info-content-section {
        padding: 50px 0;
    }

    .company-info-section h2 {
        font-size: 24px;
    }

    .company-info-section h3 {
        font-size: 20px;
    }

    .company-info-section p,
    .company-info-section ul li {
        font-size: 15px;
    }
}