.insurance-viewcat-page {
	/* padding-top: 20px; */
	padding-bottom: 30px;
}
.col{
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 4.8rem;
}
.col>*
{
	padding-right: calc(2.4rem * .5);
    padding-left: calc(2.4rem * .5);
	margin-top: 2.4rem;
}
.product-item{
	text-align: center;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
	background-color: #fff;
	height: 100%; /* Ensure items have same height */
	display: flex;
	flex-direction: column;
	align-items: center;
}
.product-item:hover{
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-color: #015432;
}
.product-item-img img{border-radius: 8px 8px 0px 0px;}
.product-item-content{padding: 2rem 1rem;}
.product-item-title{
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.28rem;
}
.product-item-title a{color: #015432;}
.product-item-description{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.product-item-button{background: #015432 !important;}
/* Chi tiết sản phẩm bảo hiểm */
.insurance-product-detail .product-main-content {
	font-size: 1.8rem; /* Tăng kích thước font cho dễ đọc */
	line-height: 1.7;
}
.insurance-product-detail .product-main-content h2,
.insurance-product-detail .product-main-content h3,
.insurance-product-detail .product-main-content h4 {
	margin-top: 30px;
	margin-bottom: 15px;
	padding-bottom: 5px;
	color: #262626; /* Màu tiêu đề phụ */
}
.insurance-product-detail .product-main-content h2 { font-size: 3rem; border-bottom: 1px solid #eee; }
.insurance-product-detail .product-main-content h3 { font-size: 2.5rem; }
.insurance-product-detail .product-main-content h4 { font-size: 2rem; }
.insurance-product-detail .product-full-description,
.insurance-product-detail .product-full-bodytext {margin-bottom: 25px;}
.insurance-product-detail .product-full-bodytext img { /* Ảnh trong bodytext */
	max-width: 100%;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.insurance-product-detail .product-full-bodytext table caption{
            font-size: 2rem; /* text-xl */
            font-weight: 600;
            margin-bottom: 1rem;
            margin-top: 2rem;
            text-align: center;
            color: #333; /* gray-700 */
}
.insurance-product-detail .product-full-bodytext p,
.insurance-product-detail .product-full-bodytext ol li{	margin-bottom: 10px;}


/* Phần câu hỏi thường gặp */
.section-faq{
	background-color: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .15);
    margin: 20px auto;
    padding: 10px;
}
.section-faq .faq-h{
	color: #0C8241;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
	margin-bottom: 15px;
}
.faq-accordion {
    border-top: 1px solid #eee; /* Đường kẻ ngang trên cùng của accordion */
	font-size: 1.7rem;
}
.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #fff;
}
.faq-question {
	position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    position: relative;
	font-size: 1.7rem;
}
.faq-question.active {
    color: #0C8241;
    background-color: rgba(255,180,0, 0.05);
}
.faq-question::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F57F25'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.7rem;
    content: ''; /* Dấu cộng mặc định */
    flex-shrink: 0;
    margin-left: auto;
    width: 1.7rem;
    height: 1.7rem;
}
/* Thay đổi dấu +/- dựa trên class active của faq-answer kế tiếp */
.faq-question.active::after{ transform: rotate(-180deg);}
.faq-answer {
    padding: 0 15px;
    overflow: hidden; /* Ẩn nội dung khi slideUp */
    max-height: 0; /* Ban đầu ẩn câu trả lời */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Hiệu ứng slide */
}
.faq-answer.show {
	max-height: 2000px;
	padding: 2.4rem;
}
.faq-answer.active p, .faq-answer.active ul {
    padding: 15px 0; /* Thêm padding bên trong answer khi hiển thị */
    margin: 0;
}