.product-detail-langdingpage {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.product-detail-langdingpage h2 {
    font-size: 22px;
    font-weight: 700;
    color: #238198;
    /* Deep blue */
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.product-detail-langdingpage h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #238198;
    /* Amber */
    border-radius: 2px;
}

.product-detail-langdingpage h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-top: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #238198;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-langdingpage h3 img,
.product-detail-langdingpage h3 .image {
    margin: 0;
    display: inline-block;
    box-shadow: none;
    border-radius: 0;
    width: auto;
}

.product-detail-langdingpage h3:hover img,
.product-detail-langdingpage h3:hover .image {
    transform: none;
    box-shadow: none;
}

.product-detail-langdingpage p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #4b5563;
    text-align: justify;
}

.product-detail-langdingpage ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.product-detail-langdingpage ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4b5563;
}

.product-detail-langdingpage ul li:has(h3) {
    padding-left: 0;
    margin-bottom: 0;
}

.product-detail-langdingpage ul li::before {
    content: '\2713';
    /* Checkmark */
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    /* Emerald */
    font-weight: bold;
    font-size: 16px;
}

.product-detail-langdingpage ul li:has(h3)::before {
    display: none;
}

.product-detail-langdingpage blockquote {
    background: #f3f4f6;
    border-left: 5px solid #238198;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-detail-langdingpage blockquote p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 18px;
    color: #1f2937;
    text-align: center;
    font-weight: 500;
}

.product-detail-langdingpage .image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.product-detail-langdingpage .image:hover {
    transform: translateY(-5px);
}

.product-detail-langdingpage .cs-row {
    /* margin-bottom: 40px; */
}

.product-detail-langdingpage iframe {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.product-detail-langdingpage .cs-col {
    margin-bottom: 0px;
}

/* Timeline and Process grids (Cards - Matches Image 1) */
.product-detail-langdingpage .cs-row:has(p[style*="text-align: center"]) .row,
.product-detail-langdingpage .cs-row:has(p[style*="text-align:center"]) .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 20px;
}

.product-detail-langdingpage .cs-row:has(p[style*="text-align: center"]) .cs-col,
.product-detail-langdingpage .cs-row:has(p[style*="text-align:center"]) .cs-col {
    position: relative;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
}

/* Use ::before pseudo-element as the card background */
.product-detail-langdingpage .cs-row:has(p[style*="text-align: center"]) .cs-col::before,
.product-detail-langdingpage .cs-row:has(p[style*="text-align:center"]) .cs-col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    right: 4px;
    background-color: #fff;
    /* White background like Image 1 */
    border: 1px solid #e5e7eb;
    /* Soft border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    /* Soft shadow */
    z-index: -1;
    transition: all 0.3s ease;
}

.product-detail-langdingpage .cs-row:has(p[style*="text-align: center"]) .cs-col:hover::before,
.product-detail-langdingpage .cs-row:has(p[style*="text-align:center"]) .cs-col:hover::before {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    border-color: #0ea5e9;
}

/* The Teal Circular Icon (from Image 1) */
.product-detail-langdingpage .cs-row:has(p[style*="text-align: center"]) .cs-col img.image,
.product-detail-langdingpage .cs-row:has(p[style*="text-align:center"]) .cs-col img.image {
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    margin-bottom: 10px;
    /* Space before the text */
    box-shadow: none;
    /* Remove any default image shadow */
    transform: none !important;
    /* Remove hover transforms for the image itself */
}

.product-detail-langdingpage h3[style*="text-align: center"],
.product-detail-langdingpage h3[style*="text-align:center"] {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 10px;
    color: #238198;
    /* Dark blue */
    font-size: 19px;
    text-align: center !important;
    justify-content: center;
}

.product-detail-langdingpage p[style*="text-align: center"],
.product-detail-langdingpage p[style*="text-align:center"] {
    margin-bottom: 5px;
    font-weight: 700;
    /* Bolder text like Image 1 */
    color: #238198;
    /* Dark blue/teal matching image */
    text-align: center !important;
    font-size: 16px;
}

.product-detail-langdingpage p[style*="text-align: center"]:last-child,
.product-detail-langdingpage p[style*="text-align:center"]:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product-detail-langdingpage h2 {
        font-size: 19px;
        margin-top: 30px;
    }

    .product-detail-langdingpage h3 {
        font-size: 18px;
    }

    .product-detail-langdingpage p,
    .product-detail-langdingpage ul li {
        font-size: 15px;
    }

    .product-detail-langdingpage iframe {
        height: 280px;
    }

    .product-detail-langdingpage blockquote p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-detail-langdingpage iframe {
        height: 200px;
    }
}