/* General styling for the service list */
.service-list {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    max-width: 800px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-list h1 {
    font-size: 24px;
    color: #880a37;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #880a37;
    padding-bottom: 10px;
}

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

.service-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-list label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #880a37;
    margin-bottom: 10px;
}

.service-list p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
}

/* Styling for the hidden product details */
.product-details {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fefefe;
}

.product-details h3 {
    font-size: 20px;
    color: #880a37;
    margin-bottom: 15px;
    text-align: center;
}

/* Styling for the submit button */
button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

button:hover {
    background: #005177;
}

/* Styling for checkboxes */
input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

.hidden {
    display: none !important;
}

/* Pricing Table Styles */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pricing-column {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.pricing-column:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background: #880a37;
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-header h4 {
    margin: 0;
    font-size: 1.5em;
    color: white;
}

.price {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: bold;
    color: white;
}

.pricing-features {
    padding: 20px;
    min-height: 200px;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
}

.select-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.select-package span {
    font-weight: bold;
    color: #880a37;
}


/* Style for list items in product short description */
.service-list p ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.service-list p li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
}

.service-list p li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #880a37;
    font-weight: bold;
}

.service-list p li:hover {
    transform: none;
    box-shadow: none;
}
body.pagelayer-body a {
    text-decoration-line: none;
    color: #000 !important;
}
.p-ol25168 .pagelayer-wp_menu-ul>li a {
    color: #fafafa;
    color: #fff !important;
}
.p-cme3920 .pagelayer-wp-menu-container ul li.menu-item > a{color:#fff !important;}
 @media only screen and (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-content, .woocommerce-account .woocommerce-MyAccount-navigation {
        float: none;
        width: 100% !important;
    }
}