 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #fafafa;

        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px 28px;
        }

        /* ========== FULL WIDTH HERO / ESSENTIAL DETAILS (similar to card) ========== */
        .hero-card {
            background: #ffffff;
            border-radius: 5px;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
            padding: 28px 32px;
            margin-bottom: 40px;
            transition: all 0.2s;
            width: 100%;
        }

        .hero-flex {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .hero-img {
            flex-shrink: 0;
        }

        .hero-img img {
            width: 300px;
            height: 300px;
            border-radius: 5px;
            object-fit: cover;
            border: 2px solid #eef2ff;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
        }

        .hero-info {
            flex: 1;
        }

        .hero-name {
            font-size: 32px;
            font-weight: 800;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .hero-name a {
            text-decoration: none;
            color: #0a56c6;
        }

        .badge-large {
            background: #e9f7ef;
            padding: 5px 12px;
            border-radius: 60px;
            font-size: 13px;
            font-weight: 600;
            color: #0d6832;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin: 12px 0 8px;
        }

        .stars {
            color: #f5b342;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .hero-meta,
        .hero-detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #334155;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 18px 0 0;
        }

        .hero-tags span {
            background: #eef2ff;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 500;
        }

        .hero-contact-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            background: #f8fafc;
            padding: 14px 20px;
            border-radius: 60px;
        }

        .hero-contact-bar .phone,
        .hero-contact-bar .address-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }


        .two-columns {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .left-details {
            flex: 3;
            min-width: 260px;
        }

        .right-sidebar {
            flex: 1.2;
            min-width: 280px;
        }


        /* Card Container */
        .info-card {
            border-radius: 6px;
            padding: 22px 26px;
            margin-bottom: 24px;
            background: #fff;
            border: 1px solid #e6ebf2;
            transition: 0.2s ease;
        }


        .info-card:hover {
            border-color: #d6dde8;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }


        .info-card * {
            max-width: 100%;
            word-wrap: break-word;
        }

        .info-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 12px;
        }

        .info-card strong,
        .info-card b {
            font-weight: 600;
            color: #222;
        }

        .info-card h1,
        .info-card h2,
        .info-card h3,
        .info-card h4,
        .info-card h5,
        .info-card h6 {
            font-weight: 600;
            color: #1f2d3d;
            margin: 18px 0 10px;
            line-height: 1.4;
        }

        .info-card h1 {
            font-size: 22px;
        }

        .info-card h2 {
            font-size: 20px;
        }

        .info-card h3 {
            font-size: 18px;
        }

        .info-card h4 {
            font-size: 16px;
        }

        .info-card h5 {
            font-size: 15px;
        }

        .info-card h6 {
            font-size: 14px;
        }


        .info-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 16px;
        }

        .info-card ul li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 8px;
            font-size: 15px;
            line-height: 1.6;
            color: #444;
        }

        /* Custom bullet */
        .info-card ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #2b6cb0;
            border-radius: 50%;
        }


        .info-card ol {
            counter-reset: item;
            padding-left: 0;
            margin-bottom: 16px;
        }

        .info-card ol li {
            list-style: none;
            position: relative;
            padding-left: 32px;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .info-card ol li::before {
            counter-increment: item;
            content: counter(item);
            position: absolute;
            left: 0;
            top: 0;
            background: #2b6cb0;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .info-card a {
            color: #2b6cb0;
            text-decoration: none;
            font-weight: 500;
        }

        .info-card a:hover {
            text-decoration: underline;
        }


        .info-card blockquote {
            border-left: 3px solid #cbd5e1;
            padding-left: 12px;
            margin: 14px 0;
            color: #555;
            font-style: italic;
            background: #f9fafc;
            padding: 10px 12px;
            border-radius: 4px;
        }


        .info-card table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .info-card th,
        .info-card td {
            border: 1px solid #e2e8f0;
            padding: 8px 10px;
            text-align: left;
        }

        .info-card th {
            background: #f5f7fb;
            font-weight: 600;
        }


        .info-card img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 10px 0;
        }


        .info-card hr {
            border: none;
            border-top: 1px solid #e2e8f0;
            margin: 20px 0;
        }


        .info-card pre,
        .info-card code {
            background: #f6f8fa;
            padding: 6px 8px;
            border-radius: 4px;
            font-family: monospace;
            font-size: 13px;
        }

        .info-card pre {
            overflow-x: auto;
            padding: 12px;
        }


        .info-card small {
            font-size: 13px;
            color: #666;
        }


        @media (max-width: 767px) {
            .info-card {
                padding: 16px 14px;
            }



            .info-card p,
            .info-card li {
                font-size: 14px;
            }
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #0f2b49;

        }

        .practice-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .practice-tag {
            background: #eef2ff;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 14px;
        }



        .list-styled {
            list-style: none;
            padding-left: 0;
        }

        .list-styled li {
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            align-items: baseline;
        }

        .list-styled li i {
            width: 22px;
            color: #0a56c6;
            margin-top: 3px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #e2e8f0;
        }

        .review-item {
            border-bottom: 1px solid #eef2f8;
            padding: 16px 0;
        }

        .review-rating {
            color: #f5b342;
        }

        /* map placeholder */
        .map-placeholder {
            background: #e9f0f5;
            height: 200px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b5c7a;
            font-weight: 500;
        }

        /* contact form */
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #cfdfed;
            border-radius: 5px;
            font-family: inherit;
            margin-bottom: 16px;
            background: #fff;
        }

        .contact-form button {
            background: #0a56c6;
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
        }

        /* similar lawyers mini section */
        .similar-lawyer-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            align-items: center;
            background: #fafcff;
            padding: 12px;
            border-radius: 20px;
        }

        .similar-lawyer-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #cbdde9;
            object-fit: cover;
        }

        .similar-lawyer-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .similar-lawyer-info p {
            font-size: 12px;
            color: #4b6b8f;
        }

        /* responsiveness */
        @media (max-width: 900px) {
            .container {
                padding: 16px;
            }

            .hero-card {
                padding: 20px;
            }

            .hero-name {
                font-size: 24px;
            }

            .hero-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .hero-info {
                text-align: center;
            }

            .hero-meta,
            .hero-detail-item {
                justify-content: center;
            }

            .hero-contact-bar {
                justify-content: center;
                border-radius: 30px;
            }

            .section-title {
                font-size: 20px;
            }

            .info-card {
                padding: 18px;
            }
        }

        @media (max-width: 760px) {
            .two-columns {
                flex-direction: column;
            }

            .hero-contact-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                background: transparent;
                padding: 0;
            }

            .hero-contact-bar .phone,
            .hero-contact-bar .address-line {
                background: #f8fafc;
                padding: 8px 16px;
                border-radius: 40px;
                width: 100%;
            }
        }
