.hero-zendoweb .hero-label {
    display: inline-block;
    background: #e0e7ff;
    color: #3730a3;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero-zendoweb .hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-top: 4rem;
}

.hero-zendoweb .hero-text {
    max-width: 600px;
}

.hero-zendoweb .hero-image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .hero-zendoweb .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .hero-zendoweb .hero-text {
        flex: 1;
    }

    .hero-zendoweb .hero-image {
        flex: 1;
        text-align: right;
    }
}



/* Section Styling */
section {
    padding: 4rem 1rem;
}

.dark-section,
.cta.dark-cta {
    background-color: #111827;
    color: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

/* Ordered List (How It Works) */
ol {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

ol li {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2.5rem;
}

ol li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #3b82f6;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    font-weight: bold;
}

/* Services Section Styling */
.services-section {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--color-primary);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-description {
    flex-grow: 1;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.service-card .btn {
    align-self: flex-start;
}

/* Optional icon styling */
.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

/* Tertiary Button (link-style) */
.btn-tertiary {
    background: none;
    color: #3b82f6;
    font-weight: 500;
    padding: 0;
    border: none;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-tertiary:hover {
    color: #1d4ed8;
}

/* About Section */
.about-benefits {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta .cta-button {
    margin-top: 1rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    ol li {
        padding-left: 2rem;
    }

    ol li::before {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
        font-size: 0.9rem;
    }
}