/* Service Pages Custom Styling */

/* Service Details Section */
.service-details {
    color: #666;
}

/* H3 Heading Spacing */
.service-details h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.service-details h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-details h2:first-of-type {
    margin-top: 30px;
}

/* Link Colors - Brand Green */
.service-details a {
    color: #1A9120; /* Brand green */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-details a:hover {
    color: #0f8915; /* Darker green on hover */
    text-decoration: underline;
}

/* Exception for buttons - keep white text */
.service-details .ch-btn-style-1,
.service-details a.ch-btn-style-1 {
    color: #fff !important; /* White text on green button */
    font-weight: 600;
    text-decoration: none;
}

.service-details .ch-btn-style-1:hover,
.service-details a.ch-btn-style-1:hover {
    color: #fff !important; /* Keep white text on hover */
    text-decoration: none;
}

/* Unordered List Styling - Remove checkmarks, use different icons */
.service-details ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-details ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Default bullet point (disc) for regular list items - Override checkmarks */
.service-single-page .service-details ul li::before,
.service-details ul li::before {
    content: "●" !important;
    position: absolute;
    left: 8px;
    color: #1A9120 !important;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif !important;
}

/* Different icon for items with <strong> tags (key points) */
.service-details ul li strong {
    color: #333;
    font-weight: 600;
}

/* Ordered List Styling */
.service-details ol {
    padding-left: 20px;
    margin: 20px 0;
    counter-reset: item;
    list-style: none;
}

.service-details ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.7;
    counter-increment: item;
}

.service-details ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #1A9120;
    font-weight: 700;
    font-size: 16px;
}

.service-details ol li strong {
    color: #333;
    font-weight: 600;
}

/* Service Highlight Box Styling */
.service-details .service-highlight {
    background: #f8f9fa;
    border-left: 4px solid #1A9120;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.service-details .service-highlight h3 {
    margin-top: 0;
    color: #1A9120;
}

.service-details .service-highlight ul {
    margin-bottom: 0;
}

/* Service Features Box Styling */
.service-details .service-features {
    margin: 30px 0;
}

.service-details .service-features h3 {
    color: #1A9120;
    margin-top: 25px;
    font-size: 20px;
}

.service-details .service-features h3:first-child {
    margin-top: 0;
}

/* Paragraph Spacing */
.service-details p {
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Image Styling */
.service-details .details-img {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.service-details .details-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Button Styling */
.service-details .ch-btn-style-1 {
    margin-top: 25px;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .service-details h2 {
        font-size: 24px;
        margin-top: 30px;
    }
    
    .service-details h3 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .service-details ul li,
    .service-details ol li {
        padding-left: 25px;
        font-size: 15px;
    }
}

