﻿/* Wrapper */
#childAdoptionPage {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #444;
}

    /* Hero Section */
    #childAdoptionPage .hero-section {
        text-align: center;
        padding: 2rem 1rem;
        background: #f7f7f7;
    }

        #childAdoptionPage .hero-section h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 1rem;
            color: #222;
        }

    #childAdoptionPage .hero-image {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* General Content */
    #childAdoptionPage .content-section {
        padding: 2.5rem 1rem;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.7;
    }

        #childAdoptionPage .content-section h2 {
            color: #d4a056;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        #childAdoptionPage .content-section p {
            margin-bottom: 1rem;
        }

    /* Styled List */
    #childAdoptionPage .styled-list {
        list-style: none;
        padding-left: 0;
    }

        #childAdoptionPage .styled-list li {
            margin-bottom: .75rem;
            padding-left: 1.5rem;
            position: relative;
        }

            #childAdoptionPage .styled-list li::before {
                content: "✔";
                color: #d4a056;
                position: absolute;
                left: 0;
                font-weight: bold;
            }

    /* CTA Section */
    #childAdoptionPage .cta-section {
        background: #222;
        color: #fff;
        text-align: center;
        padding: 3rem 1rem;
        margin-top: 2rem;
        border-radius: 12px;
    }

        #childAdoptionPage .cta-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        #childAdoptionPage .cta-section .phone-link {
            color: #f4b041;
            font-weight: bold;
        }

    #childAdoptionPage .btn-primary {
        display: inline-block;
        margin-top: 1.5rem;
        padding: .75rem 1.5rem;
        background: #d4a056;
        color: #fff;
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.3s;
    }

        #childAdoptionPage .btn-primary:hover {
            background: #b88235;
        }
