/* Custom styles for rendered markdown content and general overrides */

.services-details__content .text h2 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-details__content .text h3 {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-details__content .text blockquote {
    font-size: 22px;
    font-style: italic;
    padding: 20px 30px;
    margin: 20px 0;
    border-left: 4px dashed var(--theme-color1, #2de2a9);
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-radius: 4px;
}

.services-details__content .text table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: collapse;
    background-color: transparent;
}

.services-details__content .text table th,
.services-details__content .text table td {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.services-details__content .text table th {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    text-align: left;
    color: #fff;
}

/* Base list padding if ul/ol is used */
.services-details__content .text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.services-details__content .text ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.services-details__content .text ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.services-details__content .text ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
}

.services-details__content .text p {
    margin-bottom: 20px;
    margin-top: 10px;
}

.services-details__content .text p strong,
.services-details__content .text ul li strong,
.services-details__content .text ol li strong {
    color: #ff8c00;
    font-weight: 600;
}

/* Responsiveness for mobile headers */
@media screen and (max-width: 768px) {
    .services-details__content .text h2 {
        font-size: 28px;
    }
    
    .services-details__content .text h3 {
        font-size: 20px;
    }
}
