.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Centered since there is no image */
    padding: 3rem;
    gap: 2rem;
    max-width: 1000px;
    /* Slightly narrower for readability */
    margin: 0 auto;
    background-color: #fff;
}

.info-text {
    flex: 1;
    min-width: 300px;
    width: 100%;
}

.info-text hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 1rem;
    border-radius: 4px;
    color: #856404;
    margin: 1.5rem 0;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.info-text h1.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: #222;
    border-bottom: 2px solid #eee;
    font-family: 'Playfair Display', serif;
}

.info-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.info-text h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #444;
    font-weight: 600;
}

.info-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.info-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a373;
    /* Accent color matching site theme if possible, or just gold/brown */
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.info-text strong {
    color: #111;
    font-weight: 700;
}

/* Specific styling for prices/highlighted items */
.price-highlight {
    font-weight: bold;
    color: #bfa15f;
}

/* FAQ Specific Styling */
.faq-list {
    margin-top: 1rem;
    padding-left: 0;
}

.faq-list>li {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    /* Subtle separator */
    padding: 1.5rem 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: none;
}

.faq-list>li:last-child {
    border-bottom: none;
}

.faq-list>li:hover {
    /* No hover effect */
    background-color: transparent;
}

.faq-list>li::before {
    content: none;
}

/* The Question */
.faq-list>li>strong {
    display: block;
    font-size: 1.15rem;
    color: #333;
    /* Standard header color for consistency */
    margin-bottom: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
    font-family: 'Playfair Display', serif;
}

/* The Answer container */
.faq-list>li>ul {
    margin-bottom: 0;
    padding-left: 1rem;
    /* Slight indent */
    border-left: 2px solid #eee;
    /* Vertical guide line */
}

/* The Answer text */
.faq-list>li>ul>li {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-list>li>ul>li::before {
    content: none;
}


@media (max-width: 768px) {
    .info-container {
        padding: 1.5rem;
    }
}