.accordion {
    border-color: var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.accordion-header {
    cursor: pointer;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.accordion-header:hover {
    background: #f3f4f6;
}
/* Update these sections in your about.css */

.accordion-content {
    display: block; /* Changed from none to block to be open by default */
    padding: 1rem 1.5rem;
    background: #fff;
}

/* We hide it only when the 'closed' class is present */
.accordion.closed .accordion-content {
    display: none;
}

.accordion-icon {
    transition: transform 0.3s ease;
    transform: rotate(180deg); /* Icon starts rotated because it's open */
}

/* Icon rotates back when closed */
.accordion.closed .accordion-icon {
    transform: rotate(0deg);
}
/* --- Hover polish for subheadings --- */
.service-block h4 {
    transition: color 0.3s ease, transform 0.3s ease;
}
.service-block h4:hover {
    color: #1e40af;
    transform: scale(1.03);
}