/* Page styles for "The Clinic - Family Tree Health" — extracted from about/the-clinic.html */

        .clinic-header {
            background:  url('../../img/about_header.jpg') no-repeat center center/cover;
            padding: 200px 20px 100px;
            color: #fff;
            position: relative;
        }
        
        .clinic-header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .clinic-subheading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f4f4f4;
        }

        .clinic-header h1 {
            margin: 0 0 30px;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-weight: 700;
        }

        .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;
        }

        .btn-green:hover {
            background-color: #7ab32e;
        }

        .clinic-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .clinic-text h2 {
            color: #8cc63f;
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .clinic-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        .clinic-core {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .core-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .core-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border: 3px solid #1a73e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .core-icon svg {
            width: 35px;
            height: 35px;
            fill: #1a73e8;
        }

        .core-content h3 {
            color: #1a73e8;
            margin: 0 0 10px;
            font-size: 1.3rem;
        }

        .core-content p {
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        @media screen and (max-width: 900px) {
            .clinic-section {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
