/* ── Services / About / Pricing page styles ── */
@import url('base.css?v=2');

main {
    flex: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-block {
    padding: 36px 0;
    border-bottom: 2px solid #32cd32;
}

.service-block:last-child,
.service-block--closing {
    border-bottom: none;
}

.service-block h2 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
    color: #1b5e20;
}

.service-block p {
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.service-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 12px 0;
}

.service-block ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-block ul li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: #32cd32;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
}

/* CTA button (used on pricing page) */
.cta-button {
    display: inline-block;
    background: #1b5e20;
    color: white;
    padding: .85rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 8px;
}

.cta-button:hover {
    background: #000000;
    color: #32cd32;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding: 24px 16px;
    }
}
