/* Extracted from pharmacy.php head style block 1 */
a {
            font-weight: 600;
            color: #000;
        }

/* Extracted from pharmacy.php head style block 2 */
body {
            font-family: 'Poppins', sans-serif;
        }

        .section-title {
            font-size: 46px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .highlight {
            color: #d46b1f;
            font-weight: bold;
        }

        .facility-img {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
            transition: 0.4s ease-in-out;
        }

        .facility-img:hover {
            transform: scale(1.02);
            box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
        }

        .subtitle-line {
            height: 4px;
            width: 60px;
            background: #d46b1f;
            margin-right: 10px;
            border-radius: 5px;
            display: inline-block;
        }

        .content {
            font-size: 17px;
            line-height: 1.8;
            color: #444;
        }

        .btn-orange {
            background: #d46b1f;
            color: #fff;
            border-radius: 8px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn-orange:hover {
            background: #b85a13;
            color: white;
        }

