h1, h2, h3, h4, h5, h6 {
    color: #4F585D;
}

.custom-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.bodyText {
    padding-top: 20px;
}

.toggle-checkbox {
    display: none;
}

.product-header {
    display: block;
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    color: #4F585D;
}

.product-box {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.insurers {
    margin: 10px 0;
    display: flex;
    padding: 0px 0px 20px 35px;
    
}

.product-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(136px, 0px));
    gap: 20px;
    padding: 0px 10px 0px 10px;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.insurer-tile {
    text-align: center;
    max-width: 140px;
}

.insurer-tile img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 5px;
}

.insurer-label {
    font-size: 1.0rem;
    color: #333;
    line-height: 1.2;
    word-wrap: break-word;
}


@media (max-width: 500px) {
    .insurers{
        padding: 0px;
    }
}

@media (max-width: 450px){
    .product-content{
    display: block;
    }
    .insurer-tile{
        max-width: none;
        margin-bottom: 50px;
    }
    .insurer-tile img{
        max-height: 120px;
    }
    .insurer-label{
        font-weight: bold;
    }
    
}