.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.pricing-container h1 {
    color: #007bff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.pricing-container p {
    text-align: center;
    margin: 8px 0;
    color: #555;
}
.pricing-container .section-title {
    font-size: 22px;
    color: #ff4081;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}
.pricing-container .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff4081;
    margin: 10px auto 0;
}
.pricing-container ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 600px;
}
.pricing-container ul li {
    margin-bottom: 12px;
    padding: 12px 20px 12px 50px;
    position: relative;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.pricing-container ul li:hover {
    background-color: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pricing-container ul li::before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}
.pricing-container .rates-list li:nth-child(1)::before {
    content: '\1F465'; /*  for Shared Room */
}
.pricing-container .rates-list li:nth-child(2)::before {
    content: '\1F464'; /*  for Private Room */
}
.pricing-container .rates-list li:nth-child(3)::before {
    content: '\1F3E0'; /*  for Master Suite */
}
.pricing-container .included-list li:nth-child(1)::before {
    content: '\1F3E5'; /*  for RN-led wellness */
}
.pricing-container .included-list li:nth-child(2)::before {
    content: '\1F46A'; /*  for caregiver support */
}
.pricing-container .included-list li:nth-child(3)::before {
    content: '\1F37D'; /*  for meals */
}
.pricing-container .included-list li:nth-child(4)::before {
    content: '\1F6BF'; /*  for personal care */
}
.pricing-container .included-list li:nth-child(5)::before {
    content: '\1F48A'; /*  for medication */
}
.pricing-container .included-list li:nth-child(6)::before {
    content: '\1F9F9'; /*  for housekeeping */
}
.pricing-container .included-list li:nth-child(7)::before {
    content: '\1F3AE'; /*  for activities */
}
.pricing-container .included-list li:nth-child(8)::before {
    content: '\1F331'; /*  for peaceful environment */
}
.pricing-container .contact {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.pricing-container .contact p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-container .contact p::before {
    font-size: 24px;
    margin-right: 10px;
}

.pretty-bar-link {
    text-decoration: none; /* No underline */
    background-color: #eef7ec; /* Green color (hex for green) */
    color: inherit;
    position: relative; /* Needed for the pseudo-element bar */
    display: inline-block; /* Ensures the bar fits the text width */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease; /* Smooth background transition */
}

.pretty-bar-link::after {
    content: ''; /* Empty content for the bar */
    position: absolute;
    left: 0;
    bottom: -2px; /* Position below the text */
    width: 100%; /* Full width of the link */
    height: 3px; /* Thickness of the bar */
    background: linear-gradient(to right, #ffa500, #ff4500); /* Pretty orange gradient */
    transform: scaleX(0); /* Start hidden */
    transition: transform 0.3s ease; /* Animate in */
}

.pretty-bar-link:hover::after {
    transform: scaleX(1.2); /* Show the bar on hover */
}

