 :root {
            --accent: #028c9e;
            --accent-dark: #025e6b;
            --muted: #6b7280;
            --bg: #f5fafa;
            --card: #ffffff;
        }


        body {
            font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
            line-height: 1.5;
            margin: 0;
            background: var(--bg);
            color: #111
        }

        .container {
            max-width: 1000px;
            margin: 32px auto;
            padding: 20px
        }

        header {
            text-align: center
        }

        header img {
            width: 300px;
            height: auto;
            margin-bottom: 10px
        }

        h1 {
            margin: 0;
            font-size: 1.8rem;
            color: var(--accent-dark)
        }

        p.lead {
            color: var(--muted);
            margin: 6px 0 18px;
            color: #054766;
            font-size: 24px;
        }

        .card {
            background: var(--card);
            padding: 18px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
            border: 2px solid #19a09d
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 20px
        }

        @media (max-width:860px) {
            .grid {
                grid-template-columns: 1fr
            }
        }

        .services table {
            width: 100%;
            border-collapse: collapse
        }

        .services th,
        .services td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #eee
        }

        .services th {
            color: var(--muted);
            font-weight: 600
        }

        .footnote {
            font-size: 0.9rem;
            color: var(--muted);
            margin-top: 8px
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 8px 0
        }

        .badge {
            padding: 6px 10px;
            border-radius: 999px;
            background: #e0f7f9;
            color: var(--accent-dark);
            font-size: 0.9rem;
            font-weight: 600
        }

        .contact {
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .btn {
            display: inline-block;
            text-decoration: none;
            padding: 10px 14px;
            border-radius: 10px;
            background: var(--accent-dark);
            color: white;
            font-weight: 600;
            transition: background .2s
        }

        .btn:hover {
            background: var(--accent)
        }

        footer {
            margin-top: 20px;
            text-align: center;
            color: var(--muted);
            font-size: 0.9rem
        }

        label.small {
            font-size: 0.85rem;
            color: var(--muted)
        }

        .color-title {
            color: #054766
        }
    

