.elementor-5916 .elementor-element.elementor-element-e563d8b{--display:flex;}.elementor-5916 .elementor-element.elementor-element-4064949{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d8f3056 *//* Base Styles & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fcf8e3; /* Soft creamy background */
    color: #4a3e2a; /* Dark brown text for contrast */
    line-height: 1.6;
    direction: ltr;
}

/* Main Containers */
.page-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.content-wrapper {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Headings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5e4b3c; /* Dark coffee brown for titles */
    text-align: center;
    margin: 30px 0 15px 0;
}

.sub-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8c7853; /* A warm golden-brown for subtitles */
    margin-top: 35px;
    margin-bottom: 20px;
    text-align: left;
}

/* Price Table Styles */
.price-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.price-table .table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #fef9e7; /* Very light golden background for rows */
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-table .table-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-table .item {
    font-size: 1.1rem;
    color: #4a3e2a;
}

.price-table .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37; /* Classic gold color for prices */
    white-space: nowrap;
    margin-left: 15px;
}

/* Separator */
.separator {
    height: 1px;
    background-color: #e6d8b5; /* Light golden separator */
    margin: 40px 0;
}

/* Notes */
.notes {
    font-size: 0.95rem;
    color: #8c7853; /* Consistent color with subtitles */
    text-align: center;
    margin: 5px 0;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .sub-section-title {
        font-size: 1.5rem;
    }

    .price-table .table-row {
        padding: 15px 20px;
    }
    
    .price-table .item {
        font-size: 1rem;
    }
    
    .price-table .price {
        font-size: 1.1rem;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .price-table .table-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-table .item {
        margin-bottom: 5px;
    }

    .price-table .price {
        align-self: flex-end;
        margin-left: 0;
    }
}/* End custom CSS */