
    :root {
        --kingph-primary-color: #ffcc00; /* Gold/Yellow */
        --kingph-secondary-color: #333333; /* Dark Grey */
        --kingph-accent-color: #cc0000; /* Red */
        --kingph-text-color: #ffffff; /* White */
        --kingph-dark-bg: #1a1a1a; /* Very Dark Grey */
        --kingph-light-bg: #2a2a2a; /* Slightly lighter dark grey */
        --kingph-border-color: #444444;
    }

    /* Base styles for the page content wrapper */
    .page-kingph-photos {
        font-family: 'Arial', sans-serif;
        color: var(--kingph-text-color);
        background-color: var(--kingph-dark-bg);
        line-height: 1.6;
    }

    /* Ensure all images are responsive */
    .page-kingph-photos img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below image */
    }

    /* Section styling */
    .page-kingph-photos__hero-section,
    .page-kingph-photos__gallery-section,
    .page-kingph-photos__cta-section,
    .page-kingph-photos__faq-section {
        padding: 60px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
        text-align: center;
    }

    /* Hero Section */
    .page-kingph-photos__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 10px; /* Small aesthetic padding, relying on body for main header offset */
        background: linear-gradient(135deg, var(--kingph-dark-bg) 0%, #000000 100%);
        border-bottom: 2px solid var(--kingph-border-color);
    }

    .page-kingph-photos__hero-content {
        max-width: 800px;
    }

    .page-kingph-photos__hero-title {
        font-size: 3.2em;
        color: var(--kingph-primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-photos__hero-description {
        font-size: 1.2em;
        color: var(--kingph-text-color);
        margin-bottom: 30px;
    }

    .page-kingph-photos__hero-cta {
        margin-top: 20px;
    }

    .page-kingph-photos__hero-button {
        display: inline-block;
        background-color: var(--kingph-accent-color);
        color: var(--kingph-text-color);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-kingph-photos__hero-button:hover {
        background-color: #ff3333; /* Slightly brighter red */
        transform: translateY(-2px);
    }

    .page-kingph-photos__hero-image-wrapper {
        width: 100%;
        max-width: 900px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-photos__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Gallery Section */
    .page-kingph-photos__gallery-section {
        background-color: var(--kingph-light-bg);
        border-bottom: 2px solid var(--kingph-border-color);
    }

    .page-kingph-photos__gallery-title {
        font-size: 2.5em;
        color: var(--kingph-primary-color);
        margin-bottom: 20px;
    }

    .page-kingph-photos__gallery-intro {
        font-size: 1.1em;
        color: var(--kingph-text-color);
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-kingph-photos__gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    .page-kingph-photos__gallery-item {
        background-color: var(--kingph-secondary-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-kingph-photos__gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-kingph-photos__gallery-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        border-bottom: 1px solid var(--kingph-border-color);
    }

    .page-kingph-photos__gallery-item-title {
        font-size: 1.4em;
        color: var(--kingph-primary-color);
        margin: 15px 15px 10px;
        text-align: left;
    }

    .page-kingph-photos__gallery-item-description {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px 20px;
        text-align: left;
        flex-grow: 1; /* Pushes content to bottom */
    }

    /* CTA Section */
    .page-kingph-photos__cta-section {
        background-color: var(--kingph-dark-bg);
        padding: 80px 20px;
    }

    .page-kingph-photos__cta-title {
        font-size: 2.8em;
        color: var(--kingph-primary-color);
        margin-bottom: 25px;
    }

    .page-kingph-photos__cta-description {
        font-size: 1.15em;
        color: var(--kingph-text-color);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-kingph-photos__cta-button {
        display: inline-block;
        background-color: var(--kingph-primary-color);
        color: var(--kingph-secondary-color);
        padding: 18px 35px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-kingph-photos__cta-button:hover {
        background-color: #ffdd44; /* Slightly brighter gold */
        transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-kingph-photos__faq-section {
        background-color: var(--kingph-light-bg);
        text-align: left;
    }

    .page-kingph-photos__faq-title {
        font-size: 2.5em;
        color: var(--kingph-primary-color);
        text-align: center;
        margin-bottom: 40px;
    }

    .page-kingph-photos__faq-container {
        max-width: 800px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-photos__faq-item {
        background-color: var(--kingph-secondary-color);
        border-bottom: 1px solid var(--kingph-border-color);
    }

    .page-kingph-photos__faq-item:last-child {
        border-bottom: none;
    }

    .page-kingph-photos__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #444444; /* Darker background for question */
        transition: background-color 0.3s ease;
    }

    .page-kingph-photos__faq-question:hover {
        background-color: #555555;
    }

    .page-kingph-photos__faq-question-text {
        font-size: 1.2em;
        color: var(--kingph-primary-color);
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-kingph-photos__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--kingph-primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-kingph-photos__faq-item.active .page-kingph-photos__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
    }
    
    .page-kingph-photos__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: var(--kingph-secondary-color);
        color: #cccccc;
    }

    .page-kingph-photos__faq-item.active .page-kingph-photos__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-kingph-photos__faq-answer p {
        margin: 0;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .page-kingph-photos__hero-section {
            flex-direction: column;
            padding: 40px 15px 30px;
            gap: 20px;
        }

        .page-kingph-photos__hero-title {
            font-size: 2.2em;
        }

        .page-kingph-photos__hero-description {
            font-size: 1em;
        }

        .page-kingph-photos__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-kingph-photos__gallery-section,
        .page-kingph-photos__cta-section,
        .page-kingph-photos__faq-section {
            padding: 40px 15px;
        }

        .page-kingph-photos__gallery-title,
        .page-kingph-photos__cta-title,
        .page-kingph-photos__faq-title {
            font-size: 2em;
        }

        .page-kingph-photos__gallery-intro,
        .page-kingph-photos__cta-description {
            font-size: 1em;
        }

        .page-kingph-photos__gallery-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        /* List item responsiveness for gallery */
        .page-kingph-photos__gallery-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-kingph-photos__gallery-item-title {
            font-size: 1.2em;
            margin: 10px 10px 5px;
        }

        .page-kingph-photos__gallery-item-description {
            font-size: 0.9em;
            padding: 0 10px 15px;
        }

        .page-kingph-photos__cta-button {
            padding: 15px 30px;
            font-size: 1.1em;
        }

        .page-kingph-photos__faq-question {
            padding: 15px 20px;
        }

        .page-kingph-photos__faq-question-text {
            font-size: 1.1em;
        }

        .page-kingph-photos__faq-toggle {
            font-size: 1.5em;
        }

        .page-kingph-photos__faq-answer {
            padding: 0 20px;
        }
        .page-kingph-photos__faq-item.active .page-kingph-photos__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-kingph-photos__hero-title {
            font-size: 1.8em;
        }
        .page-kingph-photos__gallery-title,
        .page-kingph-photos__cta-title,
        .page-kingph-photos__faq-title {
            font-size: 1.8em;
        }
    }

    /* Ensure image containers are also responsive */
    .page-kingph-photos__hero-image-wrapper,
    .page-kingph-photos__gallery-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
  