    /*
     Theme Name: Guidebook ABH
     Theme URI: https://abovebeyondhosting.com
     Description: ABH custom Astra child theme
     Author: Carlos Gomez
     Author URI: http://digitalmkt.life
     Template: astra
     Version: 1.0.0
     License: GNU General Public License v2 or later
     License URI: http://www.gnu.org/licenses/gpl-2.0.html
     Tags: light, responsive, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
     Text Domain: astra-child
    */



/* Property Info */

.property-guide-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .left-column {
        flex: 1 1 35%;
        min-width: 250px;
    }
    .right-column {
        flex: 1 1 60%;
        min-width: 300px;
    }
    .accordion-section {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 4px;
        overflow: hidden;
    }
    .accordion-header {
        background: #f7f7f7;
        padding: 10px;
        font-weight: bold;
        cursor: pointer;
    }
    .accordion-body {
        display: none; /* hidden by default */
        padding: 10px;
    }
    .accordion-body.open {
        display: block; /* shown when .open class is added */
    }
    .info-link {
        cursor: pointer;
        margin-bottom: 6px;
        padding: 5px 8px;
        border-radius: 3px;
    }
    .info-link:hover,
    .info-link.active {
        background-color: #e2e2e2;
    }



