.now-hero {
    margin-bottom: 3rem;
}

.now-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -.04em;
    color: #0f172a;
}

.now-description {
    margin-top: 1rem;
    max-width: 700px;
    line-height: 1.8;
    color: #4b5563;
}

.now-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.now-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    border: 1px solid #dfe5ea;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: 0.2s ease;
}

.now-card:hover {
    transform: translateY(-4px);
    border-color: var(--label-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.now-card-icon {
    width: 3.6rem;
    height: 3.6rem;
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f3f7fb;
    font-size: 1.8rem;
}

.now-card h2 {
    margin: 0;
    color: #202a34;
    font-size: 1.4rem;
}

.now-card-status {
    display: inline-block;
    align-self: flex-start;
    margin: 0.8rem 0 1rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #eef3f8;
    color: #5f6b75;
    font-size: 0.75rem;
    font-weight: 700;
}

.now-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.now-card-body > p:last-of-type {
    margin: 0;
    color: #56616c;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


.now-card ul {
    margin: auto 0 0;
    padding-left: 1.1rem;
    color: #66717b;
    line-height: 1.8;
}

.now-card li + li {
    margin-top: 0.2rem;
}

.now-about,
.now-notice {
    padding: 2.2rem;
    border: 1px solid #e2e8ec;
    border-radius: 14px;
    background: #fff;
}

.now-about {
    margin-bottom: 2rem;
}

.now-about h2,
.now-notice h2 {
    margin: 0;
    color: #202a34;
    font-size: 1.5rem;
}

.now-about > p,
.now-notice p {
    margin: 1rem 0 0;
    color: #59636d;
    line-height: 1.9;
}

.now-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.now-about-grid article {
    padding: 1.4rem;
    border-radius: 12px;
    background: #f7f9fb;
}

.now-about-grid h3 {
    margin: 0 0 0.8rem;
    color: #202a34;
    font-size: 1.05rem;
}

.now-about-grid p {
    margin: 0;
    color: #5f6972;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .now-services,
    .now-about-grid {
        grid-template-columns: 1fr;
    }

    .body {
        padding: 2.5rem 1.2rem 4rem;
    }

    .now-hero h1 {
        font-size: 2.2rem;
    }

    .now-about,
    .now-notice {
        padding: 1.8rem;
    }
}