* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

textarea,
input {
    outline: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}


.anchor-nav {
    position: sticky;
    top: 120px;
}

.anchor-link.active {
    color: #C41230;
    font-weight: bold;
    border-left: 2px solid #C41230;
    padding-left: 0.75rem;
}

.anchor-link {
    transition: all 0.2s;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
}

.prose h2 {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #C41230;
    padding-left: 1rem;
}

.prose p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.prose ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #4A4A4A;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    color: #1A1A1A;
}

.timeline-container {
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #E5E7EB;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }
}

.service-card:hover {
    transform: translateY(-8px);
}
