/* Page styles for "Family Chiropractic Care - Family Tree Health" — extracted from holistic-services/chiropractor-for-adults.html */

        body {
            overflow-x: hidden;
        }

        .service-page-header {
            background: url('../../img/team_header.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;
        }

        .chiro-wrapper {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .chiro-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            background: #fff;
            padding: 50px;
            border-radius: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            margin-bottom: 40px;
        }

        .row-reverse {
            flex-direction: row-reverse;
        }

        .chiro-content {
            flex: 1;
        }

        .chiro-content h2 {
            font-size: 2.8rem;
            color: #2c4c3b;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .chiro-content h3 {
            font-size: 1.4rem;
            color: #8cc63f;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .chiro-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .chiro-image {
            flex: 0 0 400px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .img-modern {
            width: 100%;
            height: 450px;
            border-radius: 30px 100px 30px 100px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
        }

        .img-modern:hover {
            transform: scale(1.02);
            border-radius: 100px 30px 100px 30px;
        }

        .symptoms-section {
            max-width: 1100px;
            margin: 60px auto 100px;
            padding: 60px 40px;
            background: #fff;
            border-radius: 40px;
            box-shadow: 0 15px 50px rgba(140, 198, 63, 0.1);
            border-top: 10px solid #8cc63f;
            position: relative;
        }

        .symptoms-section h2 {
            color: #2c4c3b;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .symptoms-intro {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }

        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .symptom-item {
            display: flex;
            align-items: center;
            background: #fdfdfd;
            padding: 20px 25px;
            border-radius: 15px;
            font-size: 1.15rem;
            color: #444;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border-left: 4px solid transparent;
        }

        .symptom-item:hover {
            transform: translateY(-5px);
            border-left: 4px solid #8cc63f;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            background: #fff;
        }

        .symptom-item::before {
            content: '✓';
            color: #8cc63f;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .symptoms-outro {
            text-align: center;
            font-size: 1.3rem;
            font-style: italic;
            color: #2c4c3b;
            font-weight: bold;
        }

        .btn-green {
            background-color: #8cc63f;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: background-color 0.3s;
            margin-top: 15px;
        }

        .btn-green:hover {
            background-color: #7ab32e;
        }

        @media (max-width: 900px) {
            .chiro-section {
                flex-direction: column !important;
                text-align: center;
                gap: 50px;
            }
        }
