.section-header {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
    /* border-top: 2px solid #ddd; */
    width: 100%;
    display: block;
    clear: both;
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}
.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.full-width-card {
    width: 100%;
    max-width: 800px;
}
.pricing-title {
    font-size: 20px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 22px;
    font-weight: bold;
    color: #d4a373;
    margin-bottom: 10px;
}

.pricing-price-sub {
    font-size: 18px;
}

.pricing-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
}
.pricing-button {
    background: #d4a373;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-align: center;
}
.pricing-button:hover {
    background: #b9855d;
    color: white;
}


/* Table */

.table-pricing-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.table-service-category {
    margin-top: 20px;
    padding: 10px;
    background: #d4a373;
    font-weight: bold;
    border-radius: 5px;
    color: #FFFFFF;
}
.table-service-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

/*

       .pricing-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 40px;
        }
        .pricing-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 300px;
        }
        .pricing-title {
            font-size: 20px;
            font-weight: bold;
            color: #555;
        }
        .pricing-price {
            font-size: 24px;
            font-weight: bold;
            color: #d4a373;
            margin: 10px 0;
        }
        .pricing-description {
            font-size: 14px;
            color: #777;
            margin-bottom: 20px;
        }
        .pricing-button {
            background: #d4a373;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s ease-in-out;
        }
        .pricing-button:hover {
            background: #b9855d;
        } */
