/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir LT Std', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

/* Main Container */
.listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

/* Common Section Styles */
section {
    /* margin-bottom: 10px; */
    /* background: #ffffff; */
    /* border-radius: 8px; */
    padding: 10px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

h1 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .listing-container {
        padding: 10px;
    }

    section {
        padding: 15px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Print styles */
@media print {
    .listing-container {
        max-width: 100%;
        padding: 0;
    }

    section {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
    }
}

/* Accordion Styles */
.accordion {
    border: 1px solid white;
    padding: 0;
    margin: 0 auto;
    list-style: none outside;
    margin-top: 30px;
    font-size: 16px !important;
}

.accordion > * + * {
    border-top: 1px solid white;
}

.accordion-item-hd {
    display: block;
    padding: 15px 30px 15px 0;
    position: relative;
    cursor: pointer;
    background-color: #3838ff;
    color: #fff;
    text-align: center;
}

.accordion-item-input:checked ~ .accordion-item-bd {
    max-height: 2500px;
    padding-top: 15px;
    margin-bottom: 15px;
    -webkit-transition: max-height 1s ease-in, margin 0.3s ease-in, padding 0.3s ease-in;
    transition: max-height 1s ease-in, margin 0.3s ease-in, padding 0.3s ease-in;
}

.accordion-item-input:checked ~ .accordion-item-hd > .accordion-item-hd-cta {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.accordion-item-hd-cta {
    display: block;
    width: 30px;
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    text-align: center;
    font-size: 16px !important;
    line-height: 1;
    color: #fff;
}

.accordion-item-bd {
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.15s ease-out, margin-bottom 0.3s ease-out, padding 0.3s ease-out;
    transition: max-height 0.15s ease-out, margin-bottom 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item-input {
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    left: -9999px;
}

.accordion-text {
    margin-left: 20px;
    margin-right: 20px;
} 