h1 {
            text-align: center;
            color: #444;
        }
        .provider {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .provider h2 {
            text-align: center;
            color: #555;
            margin-top: 0;
            border-bottom: 2px solid #eee;
            padding-bottom: 12px;
            font-size: 1.8em;
        }
        .section {
            margin-bottom: 35px;
        }
        .section h3 {
            text-align: center;
            color: #666;
            font-size: 1.4em;
            margin-bottom: 20px;
        }

        /* Physical Details - Bold labels, perfect alignment */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .detail-item {
            display: flex;
            align-items: baseline;
        }
        .detail-item strong {
            display: inline-block;
            width: 140px;
            flex-shrink: 0;
            font-weight: bold;
            color: #222;
            text-align: right;
            margin-right: 15px;
        }
        .detail-item span {
            color: #444;
        }

        /* Available For - Columns with hanging indent bullets */
        ul.services {
            columns: 3;
            column-gap: 40px;
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 850px;
        }
        ul.services li {
            padding-left: 20px;
            text-indent: -20px;
            margin-bottom: 6px;
            break-inside: avoid;
        }
        ul.services li::before {
            content: "•";
            color: #d35400;
            font-weight: bold;
            display: inline-block;
            width: 20px;
            text-align: center;
        }

        .price {
            text-align: center;
            font-size: 1.3em;
            font-weight: bold;
            color: #d35400;
            background-color: #fff3e6;
            padding: 18px;
            border-radius: 10px;
            margin: 30px auto 0;
            max-width: 600px;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            ul.services {
                columns: 2;
            }
        }
        @media (max-width: 600px) {
            .details-grid {
                grid-template-columns: 1fr;
            }
            ul.services {
                columns: 1;
            }
            .detail-item strong {
                width: auto;
                text-align: left;
                margin-right: 10px;
            }
        }
