 .card-custom {
            background-color: white;
            height: 100%;
            min-height: 350px;
            overflow: hidden;
            position: relative;
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
        .card-custom:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-oval {
            border-radius: 50px;
            padding: 15px 40px;
        }
        .new-icon {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #dc3545;
            color: white;
            padding: 5px;
            border-radius: 50%;
            font-size: 12px;
            width: 50px;
            height: 30px;
            text-align: center;
            line-height: 20px;
        }
        
.pref {
        background-color: #fff;
        transition: box-shadow 0.3s ease-in-out;
    }

    .pref:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .area-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #333;
    }

    .list-group-item {
        background-color: transparent;
        border: none;
        padding: 0.5rem 0;
    }

    .list-group-item a {
        display: flex;
        align-items: center;
    }

    .list-group-item i {
        margin-right: 0.5rem;
    }