/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.lineheight-big{
    line-height: 2em;
}

:root{
    --taupe: #716659;
    --primary: #3f4b4d;  /* Site's primary turquoise color */
}

.pricing-info {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.pricing-info h4 {
    color: #716659;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-info ul li {
    padding: 5px 0;
    color: #333;
    font-size: 14px;
}

/* Accordion Styles */
.accordion-section {
    padding: 20px 0 20px 0;
}

.custom-accordion {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 0 !important;
}

.accordion-btn {
    background-color: var(--taupe);
    color: #fff;
    cursor: pointer;
    padding: 24px 32px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
}

.accordion-btn:hover {
    background-color: #7e776e;
}

.accordion-btn:after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 16px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z"/></svg>') no-repeat center center;
    transition: transform 0.3s;
}

.accordion-btn.active:after {
    transform: rotate(180deg);
}

.accordion-panel {
    background-color: transparent;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    border-radius: 0 0 10px 10px;
    padding: 0 32px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.accordion-panel.open {
    padding: 24px 32px 32px 32px;
    max-height: 800px;  /* Increased from 400px */
}

@media (max-width: 600px) {
    .accordion-section {
        padding: 30px 0 30px 0;
    }
    .custom-accordion {
        max-width: 100%;
    }
    .accordion-btn {
        font-size: 1rem;
        padding: 16px 20px;
    }
    .accordion-panel.open {
        padding: 16px 20px 20px 20px;
    }
}