/* Page styles for "Chiropractor For Children - Dr Paul Chamberlain - Family Tree Health" — extracted from holistic-services/chiropractor-for-children.html */

        body {
            overflow-x: hidden;
        }

        /* ── Hero Header ── */
        .service-page-header {
            background: url('../../img/paul_at_work.jpg') no-repeat center center/cover;
            padding: 200px 20px 100px;
            color: #fff;
            position: relative;
        }

        .service-header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-subheading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8cc63f;
        }

        .service-page-header h1 {
            margin: 0 0 10px;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-weight: 700;
        }

        .qualifications {
            font-size: 1.2rem;
            font-style: italic;
            color: #f4f4f4;
            margin-bottom: 30px;
        }

        /* ── Page Content Container ── */
        .service-content {
            padding: 80px 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-section {
            margin-bottom: 60px;
        }

        /* ── Intro Card (photo + text) ── */
        .intro-card {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            background: #fff;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            margin-bottom: 60px;
        }

        .intro-card .profile-photo {
            flex: 0 0 280px;
            width: 280px;
            height: 340px;
            object-fit: cover;
            border-radius: 20px 80px 20px 80px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
        }

        .intro-card .profile-photo:hover {
            border-radius: 80px 20px 80px 20px;
            transform: scale(1.02);
        }

        .intro-text {
            flex: 1;
        }

        .intro-text h2 {
            color: #2c4c3b;
            font-size: 2.4rem;
            margin-top: 0;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .intro-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 18px;
            color: #555;
        }

        .intro-text ul {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            padding-left: 20px;
        }

        .intro-text ul li {
            margin-bottom: 10px;
        }

        /* ── Info Cards Grid ── */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .info-card {
            background: #fff;
            padding: 40px 35px;
            border-radius: 25px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            border-top: 5px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.08);
            border-top-color: #8cc63f;
        }

        .info-card h3 {
            color: #2c4c3b;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .info-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #555;
        }

        /* ── Quote Block ── */
        .quote-block {
            background: linear-gradient(135deg, #f5f8f5 0%, #eef6e5 100%);
            padding: 30px 35px;
            border-left: 5px solid #8cc63f;
            border-radius: 0 20px 20px 0;
            font-style: italic;
            font-size: 1.15rem;
            color: #444;
            margin: 25px 0 0;
            line-height: 1.7;
        }

        /* ── Video Section ── */
        .video-section {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }

        .video-container {
            position: relative;
            aspect-ratio: 9 / 16;
            width: 100%;
            max-width: 360px;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            background: #1a1a1a;
            overflow: hidden;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
        }

        .video-container .video-fallback {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 1;
            width: 80%;
        }

        .video-container .video-fallback svg {
            margin-bottom: 12px;
        }

        .video-container .video-fallback h3 {
            margin: 0;
            color: #fff;
            font-size: 1.1rem;
        }

        .video-container .video-fallback p {
            margin: 5px 0 0;
            font-size: 0.9rem;
            color: #999;
        }

        /* ── CTA Button ── */
        .btn-green {
            background-color: #8cc63f;
            color: #fff;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(140,198,63,0.3);
        }

        .btn-green:hover {
            background-color: #7ab32e;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(140,198,63,0.4);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .intro-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 35px 25px;
                gap: 30px;
            }

            .intro-card .profile-photo {
                flex: none;
                width: 220px;
                height: 270px;
            }

            .intro-text ul {
                text-align: left;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }

            .service-page-header {
                padding: 150px 20px 70px;
            }

            .service-page-header h1 {
                font-size: 2.4rem;
            }

            .service-content {
                padding: 50px 15px;
            }

            .video-container {
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .service-page-header h1 {
                font-size: 2rem;
            }

            .intro-card {
                padding: 25px 18px;
            }

            .intro-card .profile-photo {
                width: 180px;
                height: 220px;
            }

            .intro-text h2 {
                font-size: 1.8rem;
            }

            .info-card {
                padding: 30px 22px;
            }

            .info-card h3 {
                font-size: 1.3rem;
            }

            .video-container {
                max-width: 260px;
            }
        }
