/* Collapsible content styling */

/* Specific overrides for .service-features section with increased specificity */

/* Target all paragraphs within the specific context */
section.service-features .collapsible-section .collapsible-content p {
    color: #FFFFFF !important; /* White text for paragraphs */
}

/* Explicitly target the detailed paragraph class */
section.service-features .collapsible-section .collapsible-content p.feature-detail {
    color: #FFFFFF !important; /* White text for detailed paragraphs */
}

/* Target list items within the specific context */
section.service-features .collapsible-section .collapsible-content ul li {
    color: #ff6b35 !important; /* Orange text for list items */
}

/* Target list item markers within the specific context */
section.service-features .collapsible-section .collapsible-content ul li::marker {
    color: #ff6b35 !important; /* Orange color for bullet points */
}

/* Keep existing unrelated styles */
.collapsible-header h3 {
    color: var(--blue-accent);
}

/* Specialized solutions styling (Review if needed) */
.feature-card h3 {
    color: var(--blue-accent);
}

/* .feature-card p:first-of-type { */
/*    color: var(--white-text); /* This uses the dark --white-text variable, commented out for review */
/* } */

