/* TotalSecure Custom Styles */

/* Heading styles */
.ts-heading {
    font-size: 28px;
    font-weight: 700;
    color: #121C27;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.ts-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
}

/* Paragraph styles */
.ts-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Make bullet points more prominent */
.ts-paragraph ul,
.choose-one__content ul,
.service-body ul {
    padding-left: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.ts-paragraph ul li,
.choose-one__content ul li,
.service-body ul li {
    position: relative;
   padding-left: 15px;
    margin-bottom: 8px;
    list-style-type: none;
}

.ts-paragraph ul li:before,
.choose-one__content ul li:before,
.service-body ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #07006e;
    border-radius: 50%;
}

/* Ordered list styling */
.ts-paragraph ol,
.service-body ol {
    counter-reset: item;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.ts-paragraph ol li,
.service-body ol li {
    position: relative;
    padding-left: 17px;
    margin-bottom: 8px;
    list-style-type: none;
    counter-increment: item;
}

.ts-paragraph ol li:before,
.service-body ol li:before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #07006e;
}

/* Process step styling */
.ts-process-step {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ts-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ts-step-title {
    font-size: 22px;
    font-weight: 600;
    color: #121C27;
    margin-bottom: 15px;
}

/* Benefit item styling */
.ts-benefit {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-left: 4px solid #0d6efd;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ts-benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #121C27;
    margin-bottom: 10px;
}

.ts-benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Image styling */
.ts-image {
    margin: 30px 0;
}

.ts-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Related products styling */
.ts-product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ts-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ts-product-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.ts-product-card a {
    color: #121C27;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}


/* Tags styling */
.ts-tags-list {
    margin: 15px 0;
}

.ts-tags-list .badge {
    font-size: 14px;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    color: #555;
    font-weight: 500;
    border-radius: 30px;
}

/* Additional list styling for nested lists */
.ts-paragraph ul ul,
.choose-one__content ul ul,
.service-body ul ul,
.ts-paragraph ol ol,
.choose-one__content ol ol,
.service-body ol ol,
.ts-paragraph ul ol,
.choose-one__content ul ol,
.service-body ul ol,
.ts-paragraph ol ul,
.choose-one__content ol ul,
.service-body ol ul {
    margin-top: 10px;
    margin-bottom: 0;
}

/* Styling for lists in process steps and benefits */
.ts-process-step ul,
.ts-process-step ol,
.ts-benefit ul,
.ts-benefit ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.ts-process-step ul li,
.ts-benefit ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    list-style-type: none;
}

.ts-process-step ul li:before,
.ts-benefit ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #0d6efd;
    border-radius: 50%;
}

.ts-process-step ol,
.ts-benefit ol {
    counter-reset: item;
}

.ts-process-step ol li,
.ts-benefit ol li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    list-style-type: none;
    counter-increment: item;
}

.ts-process-step ol li:before,
.ts-benefit ol li:before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #0d6efd;
}
