/* Pricing Manager General Styles */
.pm-container {
    width: 100%;
    box-sizing: border-box;
    background-color: #96885f;
    display: inline-block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Montserrat, sans-serif;
}

/* Title Section */
.pm-container .pm-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-top: 8em;
    padding-bottom: 0em;
}

.pm-container .pm-title-wrapper .pm-title {
    text-align: center;
    line-height: inherit;
    font-weight: 500;
    word-wrap: break-word;
    color: #2c2c2c;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

/* Divider under title similar to the image */
.pm-container .pm-title-display-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #2c2c2c;
    margin: 35px auto 0;
    opacity: 1;
}

/* Services Grid */
.pm-container .pm-services-grid {
    display: flex;
    justify-content: center;
    /* Space between the two columns */
    gap: 60px;
    padding-bottom: 8em;
    padding-top: 2em;
}

.pm-column {
    flex: 1;
    min-width: 300px;
    /* Ensure readablity on mobile */
    max-width: 100%;
}

/* Service List Items */
.pm-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-container .pm-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    /* Dotted line matching text color */
    border-bottom: 2px dotted black;
    margin-bottom: 12px;
    /* Slight fade like in the image */
    opacity: 0.9;
    font-family: Montserrat, sans-serif;
}

.pm-container .pm-service-item .pm-service-name {
    color: white;
    font-family: inherit;
    font-size: 1.7em;
    font-weight: 500;
    letter-spacing: 0px;
}

.pm-container .pm-service-item .pm-service-price {
    color: black;
    font-family: inherit;
    font-size: 1.7em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .pm-container .pm-services-grid {
        gap: 0px;
        flex-direction: column;
    }

    .pm-column {
        min-width: 100%;
    }
}