        .page-body {
            padding: 72px var(--section-side-pad) 90px;
            background: #ffffff;
            overflow-x: clip;
        }

        .page-body-wrap {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            gap: 48px;
            width: 100%;
            min-width: 0;
        }

        .page-block {
            min-width: 0;
        }

        .page-block h2 {
            color: #0f172a;
            font-size: clamp(30px, 3vw, 40px);
            line-height: 1.12;
            margin-bottom: 16px;
        }

        .page-block p,
        .page-intro p {
            color: var(--text-soft);
            font-size: 17px;
            line-height: 1.65;
            font-weight: 500;
            margin-bottom: 14px;
        }

        .page-block p:last-child,
        .page-intro p:last-child {
            margin-bottom: 0;
        }

        .page-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .page-list li {
            position: relative;
            padding-left: 22px;
            color: #374151;
            font-size: 16px;
            line-height: 1.55;
            font-weight: 500;
        }

        .page-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.62em;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--brand-green);
            transform: translateY(-50%);
        }

        .page-checklist li::before {
            content: "✔";
            width: auto;
            height: auto;
            background: none;
            color: var(--brand-green);
            font-size: 15px;
            font-weight: 700;
            top: 0;
            transform: none;
        }

        .page-checklist li {
            padding-left: 26px;
        }

        .service-links-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        @media (min-width: 961px) {
            .service-links-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        .service-link-card {
            display: block;
            padding: 18px 20px;
            border: 1px solid var(--border-soft);
            border-radius: 14px;
            text-decoration: none;
            color: #0f172a;
            font-size: 17px;
            font-weight: 600;
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .service-link-card:hover {
            border-color: var(--brand-green);
            background: #eef6e4;
            color: #527a24;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .cert-card {
            border: 1px solid var(--border-soft);
            border-radius: 14px;
            padding: 22px;
            background: #fafbfc;
        }

        .cert-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 52px;
            height: 36px;
            padding: 0 10px;
            border-radius: 10px;
            background: #eef6e4;
            color: #527a24;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cert-card h3 {
            color: #0f172a;
            font-size: 22px;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .page-block .cert-card p {
            color: var(--text-soft);
            font-size: 15px;
            line-height: 1.5;
            margin: 0;
        }

        .about-slider {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            --about-slider-gap: 16px;
            --about-slide-width: 260px;
        }

        .about-slider-viewport {
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }

        .about-slider-track {
            display: flex;
            gap: var(--about-slider-gap);
            width: max-content;
            will-change: transform;
        }

        .about-slide {
            flex: 0 0 var(--about-slide-width);
            border-radius: 14px;
            overflow: hidden;
            background: #f3f6f9;
            border: 1px solid #e8edf3;
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .about-slide img {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: contain;
            display: block;
        }

        .contact-wrap {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 340px;
            gap: 36px;
            align-items: start;
        }

        .contact-form-panel {
            background: #ffffff;
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
        }

        .contact-form-panel h2 {
            color: #0f172a;
            font-size: clamp(28px, 2.8vw, 36px);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .contact-form-copy {
            color: var(--text-soft);
            font-size: 15px;
            line-height: 1.55;
            margin-bottom: 20px;
        }

        .contact-info-panel {
            display: grid;
            gap: 16px;
        }

        .contact-info-card {
            background: #f6f8fb;
            border: 1px solid var(--border-soft);
            border-radius: 14px;
            padding: 20px;
        }

        .contact-info-card h3 {
            color: #0f172a;
            font-size: 20px;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .contact-info-card p {
            color: var(--text-soft);
            font-size: 15px;
            line-height: 1.55;
            margin: 0;
        }

        .contact-info-card a {
            color: var(--brand-green);
            font-weight: 600;
            text-decoration: none;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .quick-contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 960px) {
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .service-links-grid,
            .cert-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .page-body {
                padding: 56px var(--section-side-pad) 72px;
            }

            .quick-contact-row {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1280px) {
            .page-body-wrap,
            .contact-wrap {
                max-width: var(--content-max-width);
                width: 100%;
            }
        }
