.gh-4d22a39d-wrapper {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding: 40px 0;
}
.gh-4d22a39d-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.gh-4d22a39d-image-col {
    flex: 1 1 400px;
}
.gh-4d22a39d-content-col {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
}
.gh-4d22a39d-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(40, 33, 100, 0.1);
}
.gh-4d22a39d-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}
.gh-4d22a39d-image-wrap:hover img {
    transform: scale(1.05);
}
.gh-4d22a39d-badge {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.gh-4d22a39d-emergency {
    bottom: 30px;
    left: -20px;
    background: #ff8210;
    color: #fff;
    animation-delay: 1s;
}
.gh-4d22a39d-care-badge {
    top: 30px;
    right: -20px;
    color: #282164;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hours specific styling based on new requirements */
.gh-4d22a39d-hours-wrapper {
    display: flex;
    justify-content: flex-end; /* Push to the right margin of content area */
    width: 100%;
    margin-bottom: 25px;
}
.gh-4d22a39d-hours {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border-left: 4px solid #282164;
}

.gh-4d22a39d-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}
.gh-4d22a39d-service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.gh-4d22a39d-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 33, 100, 0.08);
    border-color: #282164;
}
.gh-4d22a39d-service-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(40, 33, 100, 0.05);
    border-radius: 8px;
}
.gh-4d22a39d-service-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}
@media (max-width: 768px) {
    .gh-4d22a39d-badge {
        position: relative;
        inset: auto;
        margin: 10px 0;
        animation: none;
    }
    .gh-4d22a39d-hours-wrapper {
        justify-content: center; /* Center on mobile */
    }
}